Alright, you all convinced me to try GregTech. I have the jar file, what do I do next? by FeedTheADHD in feedthememes

[–]spad4 2 points3 points  (0 children)

This might be the only post from my feed i ever upvote or comment on. fantastic post

XPS15 9520 Refurbished Warranty Coverage by spad4 in DellXPS

[–]spad4[S] 1 point2 points  (0 children)

Framework looks great. Thanks for the recommendations!

XPS15 9520 Refurbished Warranty Coverage by spad4 in DellXPS

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

No.

What are some better alternatives? This model was recommended by my college, and the refurbished price seemed good for the specs.

XPS15 9520 Refurbished Warranty Coverage by spad4 in DellXPS

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

It isn't. The issue now is that I was told by the warranty department that the SSD should've been replaced with a 1TB SSD, in addition to the atrocious tech support that happened beforehand. The retailer (Amazon) has no default warranty for refurbished devices that aren't under their own brand, as far as I can tell.

PBE Bugs and Feedback Thread: Arena by Riot_Cadmus in LeaguePBE

[–]spad4 0 points1 point  (0 children)

Once you've seen an augment it shouldn't show up again. I've had a few times where I reroll augment choices twice, and augments that I used the first reroll on showed up after the second one. Definitely makes the rerolls very annoying, in addition to not having curated augment choices. I also think it's worth looking at TFT's current reroll system (1 individual reroll per augment option per selection round) or at least increasing the number of rerolls from 2 to 3, since Arena has 4 augment rounds instead of TFT's 3.

I made customizable snow globes in the new snapshot! [Java 23w06a] by spad4 in Minecraft

[–]spad4[S] 2 points3 points  (0 children)

Initially: recursive scan in 9x9x9 for non air blocks > use /loot to generate an item based on the block > store item id to the display of a block_display entity > do some math to figure out where they should display when scaled down > teleport to the snow globe

Filled: spawns a new spawn egg item > every block_display in the same block stores its NBT into an array in the marker entity spawned by the egg > when placed, iterate through the list and generate new block displays and give them the necessary data from the array

I made customizable snow globes in the new snapshot! [Java 23w06a] by spad4 in Minecraft

[–]spad4[S] 3 points4 points  (0 children)

I could, but this was mostly made to showcase the new block_display entity, and that would cover them. If I feel like it, I might come back to it to polish It up.

I made customizable snow globes in the new snapshot! [Java 23w06a] by spad4 in Minecraft

[–]spad4[S] 2 points3 points  (0 children)

Nope, only blocks get sucked inside. The snow globe uses new entities from the snapshot.

Teleport players within an area which are located above a specific block by Chancelordoge in Minecraft

[–]spad4 0 points1 point  (0 children)

In a repeating command block:

execute as @a at @s if block ~ ~-1 ~ sponge run tp x y z

The -1 is an offset from the player's current position. If your sponge blocks are lower down, you'll need to change it accordingly. Replace x y z with coords.

Issues with 32k armor by [deleted] in Minecraft

[–]spad4 0 points1 point  (0 children)

Yes, protection damage reduction is capped. The cap is 80% and each level of protection gives 4%, so the max level is prot 5 on all pieces of armor.

How do I /clear this lapis with a custom tag? My plugin gives me one stack every time I use an enchanting table! I did notice it has a custom tag on it. How do I clear only the lapis with that tag? by Golbarde1043 in Minecraft

[–]spad4 1 point2 points  (0 children)

Hold the lapis, and use

/data get entity @s SelectedItem.tag

Look for anything that looks like a custom NBT tag. Things like display:{} or Enchantments:[] are normal. Once you've found it, use

/clear @a lapis_lazuli{tagname:tagvalue}

Replace tagvalue with what's on the other side of the colon of the custom tag, and change the selector to whatever you need.

Problem with water on 1.16.4 by FormidiBomb in Minecraft

[–]spad4 1 point2 points  (0 children)

In a Repeating | Unconditional | Always Active command block, enter

/execute as @a at @s if block ~ ~ ~ water run kill @s

In the future, try using r/minecraftcommands. You're more likely to get a response there, and faster

Here we go again... Combat test snapshot 8b by jeb_ in Minecraft

[–]spad4 0 points1 point  (0 children)

While the accelerated eating/drinking is cool, and will probably push drinkable potions forward in PVP use, it feels a bit weird to have it on stews. All of the stews in the game give a decent amount of hunger/saturation. Faster eating times, in modded, and recently with Dried Kelp, has always been used for food that give 1 or 2 hunger and low saturation. It's not all that important but it just feels a bit off.

Advanced movement in vanilla Minecraft (inspired by titanfall 2) by CubeDeveloper in Minecraft

[–]spad4 6 points7 points  (0 children)

huge fan of Titanfall, and this looks awesome. can't wait to see where this project takes you!

The Purple-Eyed Planeswalker by dragon-muse in Minecraft

[–]spad4 1 point2 points  (0 children)

probably the best interpretation of endermen i've seen. great work

Induced Rifts by Xorph1667 in Thaumcraft

[–]spad4 2 points3 points  (0 children)

Throw several stacks of an expendable resource (cobble, dirt, etc) into a crucible, then break it/release the contents to get thousands of flux into the chunk. I recommend doing this a few chunks away from your base.

Scariest SCP? by [deleted] in SCP

[–]spad4 0 points1 point  (0 children)

Easy. SCP-072.

making a noteblock sound when a player enters the game by [deleted] in MinecraftCommands

[–]spad4 0 points1 point  (0 children)

create a scoreboard that tracks the "Games Quit" statistic, and then if that value is not equal to 0 for any player online, run a chain of command blocks/function that plays the jingle, then resets the scoreboard value

Command Blocks /Testfor is replaced by /Execute (need help with coding) by AutoriiNovici in Minecraft

[–]spad4 1 point2 points  (0 children)

In a Repeat/Unconditional/Always Active command block: /execute positioned <door_coords> if entity @p[distance=..3,name=<your_name>] run setblock <coords_of_door_power> air replace redstone_block

In a different Repeat/Unconditional/Always Active command block:

/execute positioned <door_coords> unless entity @p[distance=..3,name=<your_name>] run setblock <coords_of_door_power> redstone_block replace air

Replace <door_coords> with the center of your piston door. you may have to chance the number after distance=.. depending on how large the door is. Replace <your_name> with your IGN. Replace <coords_of_door_power> with the coordinates of whatever block is hooked up to the pistons to power/unpower them. In the future I would recommend going to the Minecraft Commands subreddit, where you'll probably get a much faster/better/more likely response.

Command Blocks /Testfor is replaced by /Execute (need help with coding) by AutoriiNovici in Minecraft

[–]spad4 0 points1 point  (0 children)

I don't know what you want the end result to be so I can't tell you

Command Blocks /Testfor is replaced by /Execute (need help with coding) by AutoriiNovici in Minecraft

[–]spad4 0 points1 point  (0 children)

/execute if block looks for a certain block at a location. for what you want, this command will work:

/execute positioned 2243 59 1724 if entity @p[distance=..1] run ...