@@griffpatch could you consider making episode 8 on 3D raycasting making you able to look up and down? Or maybe animated texture like you showed in the preview of episode 7? Or the reflections? If not thats okay, i know you are working on this loving your content worth the wait!
I just had to keep on reminding myself that this is scratch. As a programmer, I can tell you that this is very impressive. Can’t wait for the next episode. What other surprises can this man bring us? :)
@@cakeeatingpirate It is ironic, but it makes complete sense. If you don't have many functions you can choose from, then chances are doing simple things will inevitably be complex. Consider the following flip jump program (flipjump is an esolang assembly language): 0x00: flip 0xFF; jump 0x10 //each instruction in this case is 16 bits total, and the numbers you see here are hex 0x10: flip 0xFF; jump 0x20 0x20: flip 0xFF; jump 0x30 0x30: flip 0xFF; jump 0x40 0x40: flip 0xFF; jump 0x50 0x50: flip 0xFF; jump 0x60 0x60: flip 0xFF; jump 0x00 0xF0: 0b0000000000000000 //this here is data that will be changed in this program Now, what kind of program is this? Why, it's constantly adding 1 to a 3 bit number, of course! The catch? You can't directly read a single bit of that 3 bit number, since there is no read instruction, without an external device. You'll have to get creative to figure out how to read that 3 bit number. You'll at least have to be okay with self modifying instructions.
You always upload the right tutorials at the right time! I tried to make an asteroids-style game, and only days later you uploaded how to make lemonoids, only to AGAIN be perfectly timed as right now I’m in the process of making an Undertale fangame, and you upload this! I didn’t use tiles because there were WAY too many of them, and instead just made each room an individual costume with other costumes linked to it for hitboxes. (I did use your sprite ordering tutorial for NPCs - thanks again for that!)
I just love how your tutorials allow us to better understand what happens in your games, our games, and everyone else’s games. Thank you so much for these epic tutorials.
I'm so blown away! Not only did I think this was possible IN SCRATCH, but you can keep building on this concept? I am exited to see what you will do next!
Your tutorials are fantastic! Although I've been on scratch for over 4 years, your tutorials still teach me new stuff. Your tutorials are really easy for anyone to understand- making the code very customizable! A key part of tutorials is explaining why you need that piece of code, how it works, and the like. Some people will just sit there telling you what to do- but not why it works. Thank you for being such an influential scratcher. Please keep it up! Plus: I'm looking forward to a new tutorial past this- possibly a roguelike? ;)
Thanks for that, I really appreciate it :) - And yes, a roguelike is very much on the cards - in fact, this RPG could be used as a base for such a game too.
Wow! This is amazing. When I thought of rpg, I thought of pokemon. I'm not a huge pokemon fan, but I know that pokemon is the first thing a lot of people think of when they think of an rpg.
I can’t Wait for the full tutorial to come out!!! I am so exited to make my dream RPG world! A suggestion for the full tutorial, assuming that you don’t already plan on this, add links to the file downloads for the text,tiles,and props. Thank you so much for the effort you put into your videos!!!!!!!!
I cannot tell you how much I've needed this, I've been trying to make an RPG for months, but I could never find a tutorial that could actually help. Thanks!
This is probably as close as a fully developed Indie game on Scratch as we can get. This seems like a thing done on a more complex Game Engine such as Unity , Unreal or Game Maker but this being on scratch is just... "unreal"
I would've loved to see a Sonic-themed game but an RPG is just as good the moment I realized games like Earthbound or Undertale are essentially RPG games.
The entire tile selection looks great but there is a issue. In 12:16 when you were adding the house, the background of the tile was transparent but scratch changes the colour of the tile background as it is not getting overlayed. There can be two solutions for it either to design a layer system for the tiles or make the tile background for those tiles the nearest tile background as house can be placed in various instances. When I was trying to make this in a clone tile system, I failed to add a second layer or change the background but could accomplish this in the entity sprite, but with using pen instead of clone, I think it would be possible to try this. This can also be used to put multiple trees overlayed on top of each other etc.
If you saw right at the end, I scroll down and you can see the same house sprites and trees working with masking... How I did this will be explained in the next episode :D, but your insight is spot on.
i actually would like to see different enemies with passive abilities, like undead enemies that revive after a certain time and can only be defeated using specific items
Indeed, while coding the engine I have also referenced RPG maker at times (although I've never used it myself). It makes sense to check these things out as they might have some good ideas.
@@griffpatch the way rpgmaker does npcs is also interesting, it may not be possible for it to go as in-depth here with the details but something similar would be neat
Griffpatch, I know you probably can’t see this, but I would totally love like, a full tutorial to this, I know it would be hard but this is just so cool! I personally think this probably took so long for you to do but I can say that it’s worth it in your end, because this is amazing!!! (Edit: He saw and commented back wow!)
I don’t even know where to begin on how crazy cool this is, it is so good I am certain that you can make a game that quality rivals with official Zelda games
Super fun as always to watch, congrats. I may not make stuff on Scratch as much, but I still love seeing games and concepts that push Scratch to the limit's, stuff like the Super Mario Maker 3 or Kirby Dreamland 3 Maker, etc, entire Maker's within Scratch with level saving, entity ai, etc. It's amazing, thank you Griffpatch.
its nice how as soon as im done with your mario tutorials you upload something teaching how to use stamped costumes synonymously, just as im starting to work on something using the exact same method. perfect timing! i was about to go in blind and have a rough time
even though I no longer use scratch and have graduated to using fusion 2.5, these videos are still really entertaining and can even teach you stuff that works in other engines too! keep up the good work.
Even if I don't plan on using Scratch again any time soon, there was so much useful insight on starting an rpg project that I can use for other engines.
Hi griffpatch! I started making a similar game 3 months ago. And I was really really surprised after I found this! It could help me so much on my game since I have already build up the base!
This is really good.... I've never imagined this in scratch....I took a break from scratch to unity engine....I guess I'm coming back to scratch again....Thank you so much Mr. Griffin
I’ve tried to do something like this using the Mario tutorial tile system but once I wanted to begin to add trees and such I would have to basically have a tile engine on top of a tile engine so I could get sorting and mining working breaking the fps to something I couldn’t keep testing upon. So this makes me very happy cause now I can continue the project and still having good fps! Thank you griffpatch you’ve taught me some very important things in scratch that I use in many of my projects!
This was actually way more fun to watch than I though it would be, I wouldn't have minded one of these for Level Eaten
Yes - I could still make one of those if this one is successful enough! - I need everyone to click the love button and subscribe!!!
@SVT Streamings Im saying that it would have been cool to have a devlog for Level Eaten
@@griffpatch could you consider making episode 8 on 3D raycasting making you able to look up and down? Or maybe animated texture like you showed in the preview of episode 7? Or the reflections? If not thats okay, i know you are working on this loving your content worth the wait!
@@austencope Not to toot my own horn, but I actually made a video on how to do that on my channel
@@griffpatch Uhh. Where did you get that exact tile sheet for cutting?
I just had to keep on reminding myself that this is scratch. As a programmer, I can tell you that this is very impressive. Can’t wait for the next episode. What other surprises can this man bring us? :)
Wow, thanks!
No matter the tools you have, what matters is how do you use them to your advantage
Opac3tyD is a good example of this
Yes
@@griffpatch can you make a series on how you made your 3D laser tag game
This is so impressive Griffpatch, you continue to amaze everyone by coding the most advanced projects in scratch!
this video made me realize that, in some ways, scratch is more complex than other engines, even without the barrier of programming
Scratch is more complex by making everything more complicated to make, yeah
@@the_real_yummuy the irony that scratches simple code ends up becoming more complex in bigger projects
@@cakeeatingpirate I mean logically, obviously
@@cakeeatingpirate It is ironic, but it makes complete sense. If you don't have many functions you can choose from, then chances are doing simple things will inevitably be complex.
Consider the following flip jump program (flipjump is an esolang assembly language):
0x00: flip 0xFF; jump 0x10 //each instruction in this case is 16 bits total, and the numbers you see here are hex
0x10: flip 0xFF; jump 0x20
0x20: flip 0xFF; jump 0x30
0x30: flip 0xFF; jump 0x40
0x40: flip 0xFF; jump 0x50
0x50: flip 0xFF; jump 0x60
0x60: flip 0xFF; jump 0x00
0xF0: 0b0000000000000000 //this here is data that will be changed in this program
Now, what kind of program is this? Why, it's constantly adding 1 to a 3 bit number, of course! The catch? You can't directly read a single bit of that 3 bit number, since there is no read instruction, without an external device. You'll have to get creative to figure out how to read that 3 bit number. You'll at least have to be okay with self modifying instructions.
You always upload the right tutorials at the right time! I tried to make an asteroids-style game, and only days later you uploaded how to make lemonoids, only to AGAIN be perfectly timed as right now I’m in the process of making an Undertale fangame, and you upload this! I didn’t use tiles because there were WAY too many of them, and instead just made each room an individual costume with other costumes linked to it for hitboxes. (I did use your sprite ordering tutorial for NPCs - thanks again for that!)
I just love how your tutorials allow us to better understand what happens in your games, our games, and everyone else’s games. Thank you so much for these epic tutorials.
I appreciate that!
I really like your videos they have helped me make many games. You are truly doing a good thing.
Glad you like them!
@@griffpatch he is so true! You are amazing!
@@griffpatch love your video!
I’ve been looking forward to a griffpatch made rpg tutorial or games! Thank you so much!
Absolute Banger!
I was trying to make an rpg and made the fight but didn't know how to do the map!
I will watch this series until the very end!
I'm so blown away! Not only did I think this was possible IN SCRATCH, but you can keep building on this concept? I am exited to see what you will do next!
Your tutorials are fantastic! Although I've been on scratch for over 4 years, your tutorials still teach me new stuff.
Your tutorials are really easy for anyone to understand- making the code very customizable! A key part of tutorials is explaining why you need that piece of code, how it works, and the like. Some people will just sit there telling you what to do- but not why it works. Thank you for being such an influential scratcher. Please keep it up!
Plus: I'm looking forward to a new tutorial past this- possibly a roguelike? ;)
Thanks for that, I really appreciate it :) - And yes, a roguelike is very much on the cards - in fact, this RPG could be used as a base for such a game too.
Wow! This is amazing. When I thought of rpg, I thought of pokemon. I'm not a huge pokemon fan, but I know that pokemon is the first thing a lot of people think of when they think of an rpg.
LOVE IT SOOOO MUCH! Thankyou For Making These Wonderful Vids :)
You're so welcome!
@@griffpatch plz help splitting web no work for chrome
Can't wait till the recreating scratch in scratch but somehow better! amazing tutorial again, cant wait to see the finished result!
I can’t Wait for the full tutorial to come out!!! I am so exited to make my dream RPG world! A suggestion for the full tutorial, assuming that you don’t already plan on this, add links to the file downloads for the text,tiles,and props. Thank you so much for the effort you put into your videos!!!!!!!!
Yes!!! I've been waiting for a tutorial on an RPG project! You truly are the best!
I am so excited for the next episode!
You're literally the best scratcher ever!
This tutor is one of the few that take instructions step by step, and interests me.
hey griffpatch thank you for always making my day! love your content
I cannot tell you how much I've needed this, I've been trying to make an RPG for months, but I could never find a tutorial that could actually help. Thanks!
I really hope this will work out well for everyone once we get going with the full tutorial :D
This is probably as close as a fully developed Indie game on Scratch as we can get. This seems like a thing done on a more complex Game Engine such as Unity , Unreal or Game Maker but this being on scratch is just... "unreal"
you should make it 3D, there are platforms with stairs that head to higher or lower levels with random generation (example: caves)
Insert drum sound effect.
or godot
@@pavlolysan222 it's "ba-dum tss"
@@ChuckSploder Same thing.
FINALY!!!
it came out
Yes - I couldn't hold off any more!
This is amazing it’s so cool I’ll definitely use this in my later games
YES A TEXT ENGINE I NEED ONE OF THESE
YOU CANNOT FATHOM HOW HAPPY I AM
I would've loved to see a Sonic-themed game but an RPG is just as good the moment I realized games like Earthbound or Undertale are essentially RPG games.
someone on the r/scratch subreddit is recreating one of the sonic games in scratch and it looks really good so far
Well, what did you think they were
This is going to be so much fun! I can't wait for the tutorial, thank you for sharing your brilliant mind with the world!
The entire tile selection looks great but there is a issue. In 12:16 when you were adding the house, the background of the tile was transparent but scratch changes the colour of the tile background as it is not getting overlayed. There can be two solutions for it either to design a layer system for the tiles or make the tile background for those tiles the nearest tile background as house can be placed in various instances. When I was trying to make this in a clone tile system, I failed to add a second layer or change the background but could accomplish this in the entity sprite, but with using pen instead of clone, I think it would be possible to try this. This can also be used to put multiple trees overlayed on top of each other etc.
If you saw right at the end, I scroll down and you can see the same house sprites and trees working with masking... How I did this will be explained in the next episode :D, but your insight is spot on.
You don’t know how useful this is right now
For a while, I have considered Griffpatch the creator of the most advanced Scratch projects. This tells me he definitely is now.
You are seriously taking scratch and turning it into gamemaker and have been for years now. You are insane.
i actually would like to see different enemies with passive abilities, like undead enemies that revive after a certain time and can only be defeated using specific items
This looks amazing! It is totally worth the wait for the actual tutorial series
You know Griffpatch, I would love to have a tutorial series about how to make a turn base rpg on scratch.
Holy smokes! I’ve wanted a RPGlike game tutorial for so long! Thanks a million Griffpatch!!
this is seriously amazing, it's kind of similar to rpg maker
Indeed, while coding the engine I have also referenced RPG maker at times (although I've never used it myself). It makes sense to check these things out as they might have some good ideas.
@@griffpatch the way rpgmaker does npcs is also interesting, it may not be possible for it to go as in-depth here with the details but something similar would be neat
These pixel RPG games look incredible!
IKR... I love good pixel art
I would love to play this on my own free time!
btw i would love to see a tutorial for a tower defence game, kinda like the bloons td series.
Sorry I accidantly disliked I was going to like
I agree too! But I want to see something like Pvz or like you said something in the Bloons series for a tower defense game.
@@sorrypants31 I think you mean pvp not pvz
@@JetfirePlayz8899 pvz is short for plants vs zombies
@@pessskychaos4874 ohhhhhhhhh ok
This is why I LOVE griffpatch... Really fun to watch this video
This looks amazing! Cheers me up for a new griffpatch upload
6:37
A little bit late, but I have been waiting for this series for months! Thanks a lot.
Griffpatch, I know you probably can’t see this, but I would totally love like, a full tutorial to this, I know it would be hard but this is just so cool! I personally think this probably took so long for you to do but I can say that it’s worth it in your end, because this is amazing!!! (Edit: He saw and commented back wow!)
It will be coming
@@griffpatch Oh my gosh ok cool! I didn’t think you could see my comment so fast, thanks for the feedback! I can’t wait! ✨
Oh boy do I love devlogs, it's so interesting seeing the other side of games compared to the ones everyone else sees
I don’t even know where to begin on how crazy cool this is, it is so good I am certain that you can make a game that quality rivals with official Zelda games
i was wating for this tutorial.thank you griffpatch your the best
Super fun as always to watch, congrats. I may not make stuff on Scratch as much, but I still love seeing games and concepts that push Scratch to the limit's, stuff like the Super Mario Maker 3 or Kirby Dreamland 3 Maker, etc, entire Maker's within Scratch with level saving, entity ai, etc. It's amazing, thank you Griffpatch.
in terms of scratch coding and unblocked games at school, you are a hero
Very exciting
This is gonna be an amazing series
finally, something i really wanted for like 5 years
Top 3 Worst Things That Can Happen
3: Losing computer
2: Dying
3: Hearing The Outro On Griffpatch's Videos
OMG Soo excited. Thank you griffpatch!
From what you got so far, I know the tutorial is going to be AWESOME. Can't wait for you to do the tutorial!
OMG so cool. Griffpatch is literally the LORD off scratch.
its nice how as soon as im done with your mario tutorials you upload something teaching how to use stamped costumes synonymously, just as im starting to work on something using the exact same method. perfect timing! i was about to go in blind and have a rough time
This RPG idea is so cool
Awesome tutorial! I've always wanted to build my own RPG world full of Scratch stuff. Great work, griffpatch!
So this is a Devlog?! Did not except that! But This is so cool! I've been waiting for this!
i've been wanting to see a devlog-type video from you so bad, im so glad that you made one!
Yay! Thank you!
Ngl this man is truly a legend
even though I no longer use scratch and have graduated to using fusion 2.5, these videos are still really entertaining and can even teach you stuff that works in other engines too! keep up the good work.
Glad you like them!
I remember playing your games years upon years ago and you popped up in my recommended today :)
There's not much I've learned about programming itself, but I'm certainly excited for that tile splitting application.
LOVE IT SOOOO MUCH! Plus the Lord of the Rings reference was really funny.
YAAAAAY!!!! IM SO HAPPY THAT YOU STARTED RPG TUTORIAL I WERE WAITING FOR IT!!! :)))
Dear lord I haven't touched Scratch in years, and I'm glad to see how well you're channel is doing.
I’m so excited! Another Griffpatch project to keep me entertained while I should be doing productive stuff. I can’t wait!
Even if I don't plan on using Scratch again any time soon, there was so much useful insight on starting an rpg project that I can use for other engines.
YEEEEEES FOR SO LONG I HAVE WANTED A SCRATCH TH-camR TO UPLOAD THIS OMG THANKS SO MUUCCCHHHH I REALLY NEEDED THIS
You're the best scratcher I ever seen or known
I'm really starting to like the process, not like I didn't before but this is just. "magnificent"
MAN, this is truly amazing, just seeing that this came from scratch is awesome!
Glad you like it!
When I first joined Scratch, I never thought there would be very cool scratcher, the griffpatch. Thanks for amazing tutorials!
hehe - Scratch is what we make it!
HE FINALLY MADE IT!!!!! AAAAAAAAAAAAA!!! I actually am making on right now! Just having trouble changing scenes and controls… THATS WHERE YOU COME IN!
I’m looking forward with what lies ahead
Yay !! Griffpatch finally make RPG game. I'm so excited !! Woo hoooooo !!
Hi griffpatch! I started making a similar game 3 months ago. And I was really really surprised after I found this! It could help me so much on my game since I have already build up the base!
I am so Exited the wait was worth it 100x over thank you so much for posting this video
Truly amazing! I'm excited about the top down movement as well, as I've been looking for that for my current project.
Keep it up!
i always wanted you to make devlogs, glad to see my wish came true !! id LOVE to see more of this!
Wow! i love devlogs, so happy griffpatch is doing them too now!
Ok, I am programming in Scratch for like 5 years, but this is for me next level.
But very good tutorials!
Very excited to make this game!
Me too!!!
The project looks so good
oh wow, i can tell this is gonna be really helpful... can't wait for that text one!
Very excited! This looks awesome!
Woah! This is exactly the thing I’ve been looking for! Great to see that this is getting its own series :]
This is really good.... I've never imagined this in scratch....I took a break from scratch to unity engine....I guess I'm coming back to scratch again....Thank you so much Mr. Griffin
Go for it!
Wow, this is a lot of stuff. Firstly, the level editor already looks amazing. Can't wait for collisions, and later enemies to be added!
This series is so incredibly cool and I can’t wait for the next video!
Your energy is that similar to Stampy and I love it, your tutorials are truly so fun
so excited!!! editing top notch, please dont overwork yourself!
I really love this format of videos, I wish that you make more of them!
It's so interesting to see what all you can achieve in scratch
Ahh. I would love if you made a few more devlog series, it's really joyful to watch you as such.
Wow a ton of new things to learn! You are amazing Griffpatch ! We love you man…
More to come!
This is going to be so epic i will watch of course all of the videos from this series :) !
Splendid!
I love these devlogs! I learn so much from them! Maybe even more than tutorials xD Keep it up! :D
man... i waited for this soooo long! i always loved rpgs and wanted to make one on my own but i didn´t no how :-( thank for starting this!
No worries!
@@griffpatch :D your the best scratcher in my opinion!
It is so exciting and shocking what you can do with scratch! great tutorial :D
YOOO your the guy that made all my favorite scratch games that I played when I was younger with my friends. I loved the ninja and 2d Minecraft games
I’ve tried to do something like this using the Mario tutorial tile system but once I wanted to begin to add trees and such I would have to basically have a tile engine on top of a tile engine so I could get sorting and mining working breaking the fps to something I couldn’t keep testing upon. So this makes me very happy cause now I can continue the project and still having good fps! Thank you griffpatch you’ve taught me some very important things in scratch that I use in many of my projects!
Yeah! This is going to be great!
I'd love to make RPGs! I can make sneaky sasquatch because of your excellent tutorials! Thank you!
Yeah :) - It is fun - There are obstacles in our way - But I'm going to try to work a way around them in the dev-log building up to the tutorial
@@griffpatch Sounds like money to me! 💵💵💵