This actually existed before RealismCraft but was mainly only animations before, and it wasn’t on the marketplace. It’s been super polished since then though clearly. RealismCraft and this are probably some of the most polished things on the marketplace.
@Irrelevant210 Looks like you don't know both actions and stuff and realistic biomes are created by same studio oreville studios 😎 so both are goated addons and purchased by many players 😎😂
Fun fact Evident, the clip in the beginning is actions and stuff. When it was first online for free. But they took it down a day after its release to make it on the marketplace.
You need to pair it with the realistic biomes addon by the same creators which does a whole lot of immersion things like fog and light rays etc. including ambient light and paired with the awesome torch animation it’s just so good. In order to truly get the best results, and to really make it fully immersive, also apply the soundscape+ addon, ill be honest I can’t remember what it’s called, but it’s a free addon, it’s not hard to find.
I just had an idea incase i cant get this to mix with realismcraft.... Im gonna use this with fields and forests and also the realism vfx pack and soundscapes.... 🤤
How can use original Minecraft textures with the new animations by assessing options of the texture(the lithe gear on the side of the pack when applied), then just change the slider. Push the slider to the "64x* to utilize any texture pack with the animations.
For java, you can get similar results with fresh animations, fresh animations extensions, fresh player animations, effective (effective is a mod), first person model (also a mod), explosive enhancement (mod) and LambDynamicLights (mod). You may need fabric or sodium, indium and continuity to run them.
"is this a cave? No its a random dent in the ground!" "is this a cave? No its a random dent in the ground!" "is this a cave? No its a random dent in the ground!"
It’s funny that the texture pack used in the meme is the exact same as the one available on the Marketplace, except there are more additions compared to the previous version.
You can actually combine this texture pack with Realistic Biome, which also made by the samw creator of action & stuff. Basically if you are wondering why the torxh didn't light up, might wanna try with realistic biome addon
You can use it, without the texture pack or a custom texture pack, by changing the toggle to 32x (for vanilla texture) or 64x (for custom texture pack, put it above actions & stuffs)
Only og remember that the texture pack in action and stuff is from crafting and building.ofc we play these cuz we can't afford Minecraft in the old day:)
using his 4 DIAMONDS on boots is diabolical (about the fishing rod, i wonder how it looks when reeling a fish in, i dont think a fishing rod wouldnt have an animation)
Also, there are settings in this pack where you can play with actions and stuff textures, Minecraft textures with actions and stuff animations, in another one where he can play with the other packs with it
Way Good experience for Nemo 21:21 - he never knew what journey he’d go through. The dragon leaves an egg, so…female. (Ignoring comments about female traits 🙄😅)
Btw you can take the texture’s off on the setting of the pack meaning you can keep the animations just with another texture pack which is really cool 😂
Pain. It’s painful that you didn’t attempt to make an enchantment table instead. The book, just get three sugar cane on the surface and kill a cow. For the obsidian, you made some with the portal. And diamonds, you encountered some at the mineshaft.
You can play it with vanilla textures when you activate it it has a settings symbol 16x is the texture pack 32x is vanilla minecraft 64x is custom texture support I hope this helps
you know actions and stuff isnt only on the marketplace, unless you're on console you can just download the pack from a sketchy website and open it in minecraft
If you want to this pack has an option to have the vanila textures with animations and also to use it with other packs of ur choice and also having the animations
You can change the resolution on that pack 16x which is the one you're using in this video 32x the vanilla texture with the animations 64x you can add any texture packs, you can even add bare bones Edit:sorry if my english is bad because it's not my first language
Fun Fact: You can turn off the texture pack that actions and stuff comes with, and play with normal vanilla textures OR custom textures with the animations enabled.
Hey evident! Just letting you know this pack is compatible with vanilla textures or custom texture packs. You have to toggle this on whenever you add it to a world, there should be a settings button, could be useful for your pvp video
5:38 It has to be an addon. I will be checking commands to see how to essentially make the function for dynamic lighting and will put it here, it will need multiple command blocks so it will be pretty long. A basic explanation (so that even a child could understand): If a player is holding a certain item (in this case, torches, lava buckets, and any light sources basically), place a light block with a power of 1 to 15 (14 for a torch, about 8 for a soul torch, for example) at its coordinate, and clear any in a 5-block radius due to lag and walking/running and others. [Section deleted by me since it has fulfilled its purpose. If anyone is questioning what it was, basically i asked for a comment or like so i would be able to reach this comment again, to edit it with the commands] Edit: After about 10 minutes of testing, i made it work. However, you'll need to set a command block for EVERY light source you'll want to have dynamic lighting. Here it goes: PS: Read EVERYTHING before copypasting into a command block, there are variables: X is the number of delay ticks on the Repeating Command Block Y, located at is the light level of the light block. Swap Y for any number between 0 and 15, 0 being no light, and 15 get lighting to 15 blocks to ALL directions. The selector properties (hasitem) after @a repeating twice is essential since you want the command to run only for people who are holding the item specified. The usage of fill instead of setblock is due to the replace fill mode, exclusive to the fill command. It is used to not destroy any blocks you may be inside, for example, water and gravel. Water if swimming and gravel if it falls on you. The Condition to the command blocks are important because: If the Repeating Command Block is conditional, it won't work. If the Chain Command Blocks isn't conditional, it may cause lag in maps that already handles a lot of things happening at once. Delay in Ticks: If the delay on the Repeating Command Block is 0, it will cause issues with the Chain Command, due to being unsynced. basically means you need to put 5 times X, that, as previously stated, is the amount of delay ticks on the Repeating Command Block. I recommend using 1 and 5, respectively, due to smoothness of the lighting, since with 2 & 10 will delete the blocks twice a second. Will cause less lag, but note that it will make the lighting irregularities more visible as you get higher delay ticks. In the Chain Command Block, the selector properties aren't included so no light blocks keep in the world. If you plan on using these commands on an custom world, that is using light blocks, those will be deleted if in range of the fill command! Note that the Command Blocks both must be in a certain position to work. Like that: ▶️➡️. The arrows can be pointing everywhere. ▶️ Is the Repeating Command Block. ➡️ Is the Chain Command Block. The blocks must be touching and the Repeating Command Block's arrow must be facing towards the Chain Command Block, the same way the Chain Command Block's arrow must be facing away from the Repeating Command Block. Use the command so it doesn't say in the chat "[!: 1 blocks filled]" continuously. Repeating Command Block - Unconditional - Always active - Delay in ticks: AT LEAST 1. execute as @a if entity @a[hasitem=[{item=,location=slot.weapon.mainhand}]] positioned as @a[hasitem=[{item=,location=slot.weapon.mainhand}]] run fill ~~~~~~ light_block_Y replace air Chain Command Block - Conditional - Always Active - Delay in Ticks: 5X or more. execute positioned as @a as @a run fill ~5~5~5~-5~-2~-5 air replace light_block_Y After making the command blocks, stand above the command blocks (if one is on top of the other) or (if they are side by side) check their X and Z coordinates (layer is unnecessary, since this is chunk-based) and paste them like this: This is a Chunk Loader command, up to a max of 10 "chunk loaders". ~~~ Refers to your current coordinates, if you are copying the command blocks coordinates, just swap these with the actual coordinates. This is crucial since if the command blocks are unloaded, the dynamic lighting won't work, and the command is a workaround/fix for this. If you have any questions about it, comment it below and I'll try to answer it if i can. Everything must be done EXACTLY as i said, unless stated otherwise (like a variable), or it will not work properly. MUST be true/enabled. Edit 2: If you want to make a command block for each type of light source, I'd suggest making all the commands before the tickingarea. Because that way, you'd probably make a rectangle or square of command blocks, then just copy the coordinates of the opposite cornered command blocks (for example, southeast and northwest corners of the square/rectangle), and thus occupying only 1 out of the 10 tickingarea slots, and making it able to have all of the light sources loaded without an issue. Edits 3 and 4 (so far): Spelling and missing/vague information
@@Scibbles_YT Yeah lmao, i usually over explain things, wanting people to understand what happens, and sometimes even tell how to do it by themselves. By the way, if you're interested in making the commands, i already edited the comment with the chain. Also, thank you for the reminder! (Be it intentional or not)
How do you make your cursor invisible? Like I can’t see it while you are in the your Minecraft menu. And in your other vids, when u are managing your inventory I don’t see your cursor. Is it a setting??
I’d like it if the thumbnail was of your skin in the middle of the sprint jump animation or something. I think having yourself posing would make it more clear to people who see this on their recommended that this is an animation pack.
By the way realism crafts is based off of actions and stuff auctions and stuff came first before realism craft so that means realism craft is actually the one who's taking stuff
This actually existed before RealismCraft but was mainly only animations before, and it wasn’t on the marketplace. It’s been super polished since then though clearly. RealismCraft and this are probably some of the most polished things on the marketplace.
I agree and true it's been in development since like, September? I think
i like that cute bunny inn your profile picture so cute
Nahh Actions and stuff and realistic biomes are more polished than realismcraft 😂
@ 1/10 ragebait but I do wanna point out that realistic biomes was created after realismcraft and is basically the budget version.
@Irrelevant210 Looks like you don't know both actions and stuff and realistic biomes are created by same studio oreville studios 😎 so both are goated addons and purchased by many players 😎😂
With that gold helmet texture 17:03, he actually looks so much like Thanos
Yeah that's what I was noticing
Holy sh*t, you're right, I didn't notice that 😮
Fun fact Evident, the clip in the beginning is actions and stuff. When it was first online for free. But they took it down a day after its release to make it on the marketplace.
Same situation for realism craft
@Rationalwolveit was also for free too?!? where can i find more info on this
the marketplace version is more polished than the old free version + it has more features
lol had it when it was free still do
@@fubycoholic you can just use the wayback machine to get it now
You need to pair it with the realistic biomes addon by the same creators which does a whole lot of immersion things like fog and light rays etc. including ambient light and paired with the awesome torch animation it’s just so good. In order to truly get the best results, and to really make it fully immersive, also apply the soundscape+ addon, ill be honest I can’t remember what it’s called, but it’s a free addon, it’s not hard to find.
I just had an idea incase i cant get this to mix with realismcraft....
Im gonna use this with fields and forests and also the realism vfx pack and soundscapes.... 🤤
Its literally called soundscape+
Actually realistic biomes already has sounds like soundscapes already inside the addon.
There’s a setting to change it to a modified version of the default textures, it’s just called “x32” in the slider. This pack works on servers too!
Funny thing is
This existed before Realism craft got released
Fr
Yeah but it wasnt on the console stores, beleive me i looked explicitly for this add on and settled with RLcraft
Fr
Fr
All chill until somebody uses this pack on the hive
Lol
Tried it and yeah, it fits very well.
they literaly made the PVP version
Same bro, I did even used it in a random realm I got.
Why?
How can use original Minecraft textures with the new animations by assessing options of the texture(the lithe gear on the side of the pack when applied), then just change the slider.
Push the slider to the "64x* to utilize any texture pack with the animations.
5:32 because it's resources pack but if you pair this realistic biome (made by same creator of action and stuff) which is addon has dynamic lighting
For java, you can get similar results with fresh animations, fresh animations extensions, fresh player animations, effective (effective is a mod), first person model (also a mod), explosive enhancement (mod) and LambDynamicLights (mod). You may need fabric or sodium, indium and continuity to run them.
You can actually use the vanilla textures using the 32x subpack just villagers are bugged unless you use the 64x pack but there’s no 3d items in that
"is this a cave? No its a random dent in the ground!"
"is this a cave? No its a random dent in the ground!"
"is this a cave? No its a random dent in the ground!"
It’s funny that the texture pack used in the meme is the exact same as the one available on the Marketplace, except there are more additions compared to the previous version.
At this point lets just make evident president
Real
lol
@ nah actually tho they needa lower the age
SCRIBBLE!!!!!!!
@@Scibbles_YT how are you
You can actually combine this texture pack with Realistic Biome, which also made by the samw creator of action & stuff.
Basically if you are wondering why the torxh didn't light up, might wanna try with realistic biome addon
You can also turn new textures off and keep only animations, and also please strike a creeper with lightning, the animation is insane
7:37 OFF TO SEE THE WIZARD AGAIN 🔥🔥🔥
It's the island of misfit toys cracked me up in that video
You can use it, without the texture pack or a custom texture pack, by changing the toggle to 32x (for vanilla texture) or 64x (for custom texture pack, put it above actions & stuffs)
Finally, someone good at bedwars playing this pack on bedrock.
5:42 it needs to be an add-on soo you can't blame them
Only og remember that the texture pack in action and stuff is from crafting and building.ofc we play these cuz we can't afford Minecraft in the old day:)
3:38 “OKAY😋😋😛🙂↕️👀” 😹😹😹
R.I.P Piggy
Happy New Years - Piggy 1/3/2025
Are u talking about the Roblox game piggy orrrrrr?
The video is about minecraft not roblox piggy
I just saw you and nibbles in a hive skywars game. What are u cooking up????
Hmmm
using his 4 DIAMONDS on boots is diabolical
(about the fishing rod, i wonder how it looks when reeling a fish in, i dont think a fishing rod wouldnt have an animation)
Evident dressing up as an axolotl and playing Minecraft is peak
Also, there are settings in this pack where you can play with actions and stuff textures, Minecraft textures with actions and stuff animations, in another one where he can play with the other packs with it
18:15 this has been happening to me too I play on bedrock and I hear a ghast but they don't spawn
Way Good experience for Nemo 21:21 - he never knew what journey he’d go through.
The dragon leaves an egg, so…female. (Ignoring comments about female traits 🙄😅)
If it helps, you can set the textures to be the original textures
Bro is truly the Marketplace guy
Btw you can take the texture’s off on the setting of the pack meaning you can keep the animations just with another texture pack which is really cool 😂
MINECRAFT with action and stuff.. im really like ur vid❤...
5:32 with the whole torch thing, it is an add on as it’s nothing to do with visual textures but much more an actual coding thing
sweet vid! keep up the good work evident! 👍
Pain. It’s painful that you didn’t attempt to make an enchantment table instead. The book, just get three sugar cane on the surface and kill a cow. For the obsidian, you made some with the portal. And diamonds, you encountered some at the mineshaft.
Bro Used Emric's Sword In The Thumbnail 💀
Bro! You missed the best part, the mace animation
The animations here are awesome I love these compared to the older ones 😭
You can play it with vanilla textures when you activate it it has a settings symbol
16x is the texture pack 32x is vanilla minecraft 64x is custom texture support
I hope this helps
you know actions and stuff isnt only on the marketplace, unless you're on console you can just download the pack from a sketchy website and open it in minecraft
I LOVE this pack, So glad you made a video about it.
Wow that texture pack looks insane you should record a video of playing a minecraft server with that texture pack on
If you want to this pack has an option to have the vanila textures with animations and also to use it with other packs of ur choice and also having the animations
You can change the resolution on that pack 16x which is the one you're using in this video 32x the vanilla texture with the animations 64x you can add any texture packs, you can even add bare bones
Edit:sorry if my english is bad because it's not my first language
Try actions and stuff with realistic biomes it will make your world more lively
There’s also other options for the pack like vanilla textures and the bare bones textures. Also the wither spawning animation is sick.
my legs are spreading! -Evident 2025
You should really try the cave dweller add-on by XP games. I promise you, it’s way better than the one in the “dwellers” add-on.
As someone who uses another animation pack for pvp, it was worth $10 for that too
Love the market place video EvidentP
Fun Fact: You can turn off the texture pack that actions and stuff comes with, and play with normal vanilla textures OR custom textures with the animations enabled.
I was waiting for this 🔥
you could use the trial chambers to get a mace and you could see the breeze animation.
did you know you can use the animations without the texture pack by using the little cog on the pack
26:40 that one guy was me thanks for the shout out 😂
w mans
Oh this is like the one Dallasmed65 has been using. I’m pretty sure axolotls also look really cool in a bucket.
Yoo, you finally played the Actions and Stuff recourse pack.
Edit: Changed Add-on to resource pack.
Resource pack*
@@Handle-k3p Oh yeah, ok
Hey evident! Just letting you know this pack is compatible with vanilla textures or custom texture packs. You have to toggle this on whenever you add it to a world, there should be a settings button, could be useful for your pvp video
Nice! Now use fresh animations and bare bones texture packs for Minecraft Java edition
I used to use the animation on the hive and it's hella goofy to see people bringing and pvping
“We finally found a lava pool from this brick thingy” It’s a TRIAL CHAMBER
if you wanth those kind of animation in java use fresh animations
U can change to vanilla texture and u can still got the animation in 16x version!
Try the add-on called:REALISM / fields + forests. Its so cool ,but my tablet is too potato to play it.
he tried it for like 2 seconds in his marketplace pass video and almost immediately dropped it because of how green it was
I hope you feel better🙏🏻
You should use this pack in the next Trapping Tuesday
Pls do a let's play with the actions & stuff or do 100 days on it. It'll be great
This pack on a server would be really funny I would love to see that 😂 😂
5:38 It has to be an addon.
I will be checking commands to see how to essentially make the function for dynamic lighting and will put it here, it will need multiple command blocks so it will be pretty long. A basic explanation (so that even a child could understand): If a player is holding a certain item (in this case, torches, lava buckets, and any light sources basically), place a light block with a power of 1 to 15 (14 for a torch, about 8 for a soul torch, for example) at its coordinate, and clear any in a 5-block radius due to lag and walking/running and others.
[Section deleted by me since it has fulfilled its purpose. If anyone is questioning what it was, basically i asked for a comment or like so i would be able to reach this comment again, to edit it with the commands]
Edit: After about 10 minutes of testing, i made it work. However, you'll need to set a command block for EVERY light source you'll want to have dynamic lighting. Here it goes:
PS: Read EVERYTHING before copypasting into a command block, there are variables:
X is the number of delay ticks on the Repeating Command Block
Y, located at is the light level of the light block. Swap Y for any number between 0 and 15, 0 being no light, and 15 get lighting to 15 blocks to ALL directions.
The selector properties (hasitem) after @a repeating twice is essential since you want the command to run only for people who are holding the item specified.
The usage of fill instead of setblock is due to the replace fill mode, exclusive to the fill command. It is used to not destroy any blocks you may be inside, for example, water and gravel. Water if swimming and gravel if it falls on you.
The Condition to the command blocks are important because: If the Repeating Command Block is conditional, it won't work. If the Chain Command Blocks isn't conditional, it may cause lag in maps that already handles a lot of things happening at once.
Delay in Ticks: If the delay on the Repeating Command Block is 0, it will cause issues with the Chain Command, due to being unsynced. basically means you need to put 5 times X, that, as previously stated, is the amount of delay ticks on the Repeating Command Block. I recommend using 1 and 5, respectively, due to smoothness of the lighting, since with 2 & 10 will delete the blocks twice a second. Will cause less lag, but note that it will make the lighting irregularities more visible as you get higher delay ticks.
In the Chain Command Block, the selector properties aren't included so no light blocks keep in the world. If you plan on using these commands on an custom world, that is using light blocks, those will be deleted if in range of the fill command!
Note that the Command Blocks both must be in a certain position to work. Like that: ▶️➡️. The arrows can be pointing everywhere. ▶️ Is the Repeating Command Block. ➡️ Is the Chain Command Block. The blocks must be touching and the Repeating Command Block's arrow must be facing towards the Chain Command Block, the same way the Chain Command Block's arrow must be facing away from the Repeating Command Block.
Use the command so it doesn't say in the chat "[!: 1 blocks filled]" continuously.
Repeating Command Block - Unconditional - Always active - Delay in ticks: AT LEAST 1.
execute as @a if entity @a[hasitem=[{item=,location=slot.weapon.mainhand}]] positioned as @a[hasitem=[{item=,location=slot.weapon.mainhand}]] run fill ~~~~~~ light_block_Y replace air
Chain Command Block - Conditional - Always Active - Delay in Ticks: 5X or more.
execute positioned as @a as @a run fill ~5~5~5~-5~-2~-5 air replace light_block_Y
After making the command blocks, stand above the command blocks (if one is on top of the other) or (if they are side by side) check their X and Z coordinates (layer is unnecessary, since this is chunk-based) and paste them like this:
This is a Chunk Loader command, up to a max of 10 "chunk loaders". ~~~ Refers to your current coordinates, if you are copying the command blocks coordinates, just swap these with the actual coordinates. This is crucial since if the command blocks are unloaded, the dynamic lighting won't work, and the command is a workaround/fix for this.
If you have any questions about it, comment it below and I'll try to answer it if i can.
Everything must be done EXACTLY as i said, unless stated otherwise (like a variable), or it will not work properly. MUST be true/enabled.
Edit 2: If you want to make a command block for each type of light source, I'd suggest making all the commands before the tickingarea. Because that way, you'd probably make a rectangle or square of command blocks, then just copy the coordinates of the opposite cornered command blocks (for example, southeast and northwest corners of the square/rectangle), and thus occupying only 1 out of the 10 tickingarea slots, and making it able to have all of the light sources loaded without an issue.
Edits 3 and 4 (so far): Spelling and missing/vague information
I was about to say something like this but slight less detail 😭😭
@@Scibbles_YT Yeah lmao, i usually over explain things, wanting people to understand what happens, and sometimes even tell how to do it by themselves. By the way, if you're interested in making the commands, i already edited the comment with the chain. Also, thank you for the reminder! (Be it intentional or not)
you can also play without the textures by going into the pack settings and going to 32x
20:35 what was that laugh
You forgot the water mlg with the fish
I love how your skin is just an Axolotl in a bucket
i saw this ln a dashpum video. (the pumpkin guy)
You forgot to do the fish bucket clutch thing… Oh well. Maybe next time, if there is one.
This pack genuinely revived the game for me.
you should have activated that paper little guy on the top. You'd see much more.
You should try out the texture pack Afreshed textures and Animations pls
How do you make your cursor invisible? Like I can’t see it while you are in the your Minecraft menu. And in your other vids, when u are managing your inventory I don’t see your cursor. Is it a setting??
Can we all ask how long it actually took evident to speedrun minecraft
Another W From Evident!
you can change it in the settings to have vanilla minecraft textures but keep the animations
I’d like it if the thumbnail was of your skin in the middle of the sprint jump animation or something. I think having yourself posing would make it more clear to people who see this on their recommended that this is an animation pack.
This is the best texture pack I’ve ever seen 😮
This pack is a huge W. Definitely buying it soon haha.
Also great content lov it keep it up
2:43 u can actualy change the pack to 32x in the global resources menu and than its the normal textures
you have to put actions directly in your world (not just global) them you get dynamic stuff
Have you heard of the “More Tools” mod on the marketplace? I’ve been playing it recently and it’s the most fun I’ve had on Minecraft
I really want bedrock creators to make a proximity chat add-on
24:36 if you didn’t know, the dragon is actually a girl that’s why there’s the dragon egg and her name is Jane (I think)
Can this and realism craft be used on the same world?
If you disable the realism resource pack
Realism craft and the 15 years event both had textures made by this same group, Orville studios
Dont you just love it when evident goes "ITS MININ TIME!" And goes mining?
this with bare bones texture pack and some shaders if you're on the preview and your game will look like the trailers.
I knew this was happening from the stream😂❤
The pufferfish was innocent
By the way realism crafts is based off of actions and stuff auctions and stuff came first before realism craft so that means realism craft is actually the one who's taking stuff
1:29 juggle physics Enabled, Enjoy 💀
Let's go I used this pack before this video dropped