Тёмный

Unreal Engine 5 RPG Tutorial Series - #7: Levels and XP 

Gorka Games
Подписаться 113 тыс.
Просмотров 55 тыс.
50% 1

Hello guys, in this quick and simple tutorial we are going to continue with my UE5 RPG Tutorial Series in Unreal Engine 5! In today's episode we will begin to make the player stats, such as health, stamina and XP!
↪️Just opened my Discord Server, join NOW: bit.ly/GorkaGa...
➡️Whole Series: • Unreal Engine 5 RPG Tu...
👉Awesome Unreal Engine courses on Wingfox: bit.ly/GorkaGa...
Check out my Steam Game! bit.ly/3rVlXU1
Follow me on Twitter: / gorkagames
Follow me on Instagram: bit.ly/Instagr...
Subscribe to the channel: / @gorkagames
unreal engine 5,ue5,RPG game,tutorial,quixel,megascans,unreal engine RPG game xp and levels,RPG game unreal engine 5,ue5 RPG player stats,ue5 beginner tutorial,ue5 how to make an rpg game,unreal engine 5 xp tutorial,unreal engine 5 easy RPG level system,unreal engine 5 asasins creed xp,ue5 xp and level,unreal engine 5 how to make assassins creed xp system, unreal engine 4,ue4,unreal engine 5 level system RPG game tutorial,ue5 RPG series, RPG game series in ue5

Опубликовано:

 

30 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 195   
@LonePhoenix36
@LonePhoenix36 Год назад
11:50 For those who don't want to use a database, you can also make a multiplier float to make it more efficient. Try to connect your Max XP on a multiplier float with a 1.5x value for exemple and you will get a nice Max XP value by each next level ;).
@yamikanikalonge2346
@yamikanikalonge2346 Год назад
I love your work thanks a lot it’s really helped can you also show how to add damage from a thrown object to the enemy for example if the character is holding a cube and throws it at the enemy the damage by weight and strength
@rremnar
@rremnar Год назад
A database is only necessary if math can't get the same results. So I approve of the "no database" method. Databases, depending on the what and how, can be difficult, and take up too much resources; when a simple math algorithm would due. Edit; It's hard to say, would a look up table be faster than math? That is a question only you can answer, as a developer.
@thedefaultcube1218
@thedefaultcube1218 11 месяцев назад
the data table is faster i believe,... and a multiplier has an exponential growth to it. those data tables are designed to keep the player feeling accomplished and a sense of progression. in my humble opinion. now im getting into game design though. to each there own! @@rremnar
@reznal
@reznal 11 месяцев назад
And if you want to use a multiplier using the incoming level count increase, you can multiply the exp by the multiplier to the power of the level increase to get the value for a new level Current Exp * (Multiplier ^ level Increase)
@EyvindurKarlssonOfficial
@EyvindurKarlssonOfficial 8 месяцев назад
@@reznal I just came here to post a similar thing that I just put into mine. Basically for the input into the "Add" node, I plugged current level into a multiplier (I used 75). That way, when you reach level 2 it goes up to 250, then 475, and so on. Very simple and clean.
@Yggdrasil777
@Yggdrasil777 Год назад
You forgot to account for gaining more CurrentXP than the MaxXP at one time. In the IncreaseLevel, you will need to subtract the current MaxXP spent from the CurrentXP (not set to 0) and THEN increase the MaxXP amount. You will need to change the Branch in the IncreaseXP function to a WhileLoop. Hook the LoopBody to the IncreaseLevel and the Completed to the HUD updates. This will allow the IncreaseLevel to run until it needs to stop. If you set the amount in the player blueprint to something high, you will see the results after doing this. This will allow wrap-around experience points.
@dansdaily3489
@dansdaily3489 Год назад
This helped me a lot! Thank you!
@FadeToBlackOps
@FadeToBlackOps Год назад
Good catch! Thanks for ur comment :D
@superchansey
@superchansey Год назад
What do you mean by HUD updates?
@rugbyf0rlife
@rugbyf0rlife Год назад
I actually came up with my own solution. Simply added a new variable called "Rollover XP" by taking max xp from current xp after xp is greater than max xp. I then plugged it in to xp set at next level. Don't know if thats efficient or not, but it works well and I came up with it myself on my first day learning UE5
@AresWorlds
@AresWorlds 8 месяцев назад
Good point but after this i need to multiply my max xp if i do 2x my progress bar always start %50 when i leveled up if i do 3x its become more hard to gain level how can i fix this
@TheDjscrady
@TheDjscrady 9 месяцев назад
First of all thanks for these tutorials I'm learning a lot, thanks to what I learned from you I can now also fix some bugs. for example for running there are 3 bugs: 1- if you press the run button the stamina decreases even when you stand still 2- the event tick increases stamina infinitely 3-if the stamina ends can spint remains false and you can no longer run I fixed all three bugs: 1- did I add a walking boolean? which is set to true at the start of the movement and false at the end and I added it to the AND condition with crouched? and can you sprint? 2-In the event tick I added an AND control with NOT Sprinting saying that current stamina must be != from Max Stamina to increase stamina 3- I add a check to the start that the stamina is greater than 0 if the condition is true set can spint to true and do what you have to do I don't know if it's great but it solves everything, and I hope to be useful to someone. PS. If he fixes it in subsequent videos I'll get angry, but at least I'm satisfied that I'm learning to edit and fix things on my own. I left without knowing how to do anything :D
@ProjetoVayrus
@ProjetoVayrus 8 месяцев назад
In the Comments of the past video has the solution
@komegaming3500
@komegaming3500 7 месяцев назад
Thanks for the bugs you found, but the second one isnt true in the increase stamina methode it asks if the current stamina > max and then if true it does nothing
@adrielau5041
@adrielau5041 3 месяца назад
using event tick is probably not optimal, I think we should use a timer to increase stamina so that it doesnt run every frame
@K1880-k7n
@K1880-k7n 2 месяца назад
thanks for fix 3 that helpt me allot
@dedhead9322
@dedhead9322 7 месяцев назад
This is an excellent tutorial series for someone like myself with almost no experience with UE5, or any game developing software for that matter. I have very limited experience with 3d software but do have a motion graphics / video editing background. I am picking this up pretty quickly with your instruction and I'm very glad you made these videos. I just wanted to say thanks!
@MikBurlak
@MikBurlak Год назад
And I made a pelvic and head tilt forward for the sprint, as we did with the lean and it looks pretty good
@bradennichols3154
@bradennichols3154 2 месяца назад
if anyone gets the set percent error, inside increase stamina function, before the branch place an is valid check and use player character ref as input object. worked for me anyway. also on bpc playerstats event graph i went ahead and put is valid checks before both set percents with player character as input object
@JosiahHuwe
@JosiahHuwe 2 месяца назад
12:00 Idk if someone did this but I added a branch to double check if the XP is greater then or equal to the max XP then if it is greater then or equal then i subtract the max xp out of the xp so any extra xp you have is saved
@enderfire3379
@enderfire3379 2 месяца назад
Selecting the pelvis of the sprint animation and tilting it forward a bit looks really good
@madsstensrud946
@madsstensrud946 Год назад
Yo man, love the tutorial. :D About the camera zoom: You can save some time and space and just put boolean (Sprinting?) into a (Not Boolean) into a new (Branch), just before the (Crouched?) and (Not Boolean) (Branch) at the start. Then you only need to put it in once, rather than have it for each camera movement.
@dt6285
@dt6285 6 месяцев назад
I had issues with the Sprint action. One of the things I did to fix it was to replace the branch from (IA_Sprinting - Started) with a (CanSprint) node checked on. So here I just added in another branch with (Not - Crouched?) conditions before the (Can Sprint) node. This works perfectly. I noticed that even though it would not sprint while crouched, and stopped sprinting when I hit crouch, if I hit crouch while sprinting it would still drain stamina until I released the Sprint Key. I solved this by going to the branch after the (Drain Stamina) node adding an (And) node and then added (NOT - Crouched?) to the (Can Sprint) condition. That fixed the stamina drain if the Sprint key was still pressed after Crouching.
@arthurpereira8717
@arthurpereira8717 Год назад
I love your channel
@Ticck-112_arts
@Ticck-112_arts Год назад
Me too (I making RPG horor game)
@pacificnoble4513
@pacificnoble4513 6 месяцев назад
guys xp bar wont update for me when i press 2, it is set to the correct starting values but the increase XP function wont work, i followed through with it exactly, did the branch and connected the false on the set percent. iam getting no errors too. if anyone has a fix for this please let me know
@thewritingloft
@thewritingloft 15 дней назад
Having the same problem! Did you ever get it fixed?
@pacificnoble4513
@pacificnoble4513 15 дней назад
@@thewritingloft I did !! But I don't remember how iam so sorry I'll have look through my notes and let you know if I found it
@thewritingloft
@thewritingloft 14 дней назад
@@pacificnoble4513 Omg that’d be amazing if you can! Thank you so much!
@sparklingjane
@sparklingjane 5 дней назад
I've watched the video multiple times and restarted everything and I still have this same issue... I've spent my evening on it and it's now 1.am I'm gonna try to fix it for while and if I found anything I'll be back to say how I did.
@OliverSeeds
@OliverSeeds 2 месяца назад
I can feel the progress already, often when you say things I go off thinking I know what to do now! many times I am wrong but it is good to see how far I have come, keep making such awesome content!
@brandox95
@brandox95 Год назад
BUG (first Great playlist so far second the bug is in the stamina when you drain all your stamina you can run again even if it goes all the way to 100)
@ManPanic9
@ManPanic9 Год назад
Were you able to figure out to resolve this bug? I am seeing it as well
@smitf231
@smitf231 Год назад
If you check the comments in the previous video someone has posted the fix there.. or basically, go to your stamina section in your BP_ThirdPersonCharacter, event tick after calling the Increase Stamina function, place another SET "can Sprint" node - ticked. Fixed the issue for me too.
@Voxelvision586
@Voxelvision586 10 месяцев назад
@@smitf231 that worked thx.But if i vault on any object my Stamina bar stop increasing.can you help!
@twintek1099
@twintek1099 9 месяцев назад
Is it possible for you to please add like a character customisation system tutorial? Rpg style.
@ThatBlenderDude_
@ThatBlenderDude_ 11 месяцев назад
heya, is this mandatory? I'm cool with adding xp if i have to for something to work later on, but its not necessarily needed for my game.
@Bevd87
@Bevd87 22 дня назад
Hey losing my mind over a slight issue can't figure it out. I've messed around with nodes for 2 different styles but Sprint key seems to be causing me loads of issues. If I want to crouch from sprint, I can make that work but if I hold Sprint while crouched, when I leave crouch I am running normal speed (500) and stamina is still draining. If I follow your guide here I can get it working like in video (So the character doesn't crouch while sprinting) but pressing crouch will slow the character from 750 to 500 and continue to drain stamina, even though they don't crouch. Thanks for the series, been really helpful getting me in to Unreal
@dylandykeman936
@dylandykeman936 5 месяцев назад
3:45 just change the timeline to "play" and "reverse" instead of "play from start" and "reverse from end"
@hansbetinardi1237
@hansbetinardi1237 5 месяцев назад
Hello, I have a problem when updating XP, instead of the numbers being updated they are written over, leaving the information strange and confusing, I've already checked and didn't find the error, does anyone know what it could be?
@186gaming7
@186gaming7 3 дня назад
There is issue with the stamina when you run out of stamina to 0 although it can regenerate but you cant sprint anymore to fix this you have to set back the can sprint to true right after the increase stamina call at the very end of the event tick
@DnlMysticGoku
@DnlMysticGoku Месяц назад
Anyone Struggling at 18:39 I put in the wrong brackets. They are not parenthesis. I know he says that but it's late.
@miguelmoraldo4263
@miguelmoraldo4263 Месяц назад
great video, i appreciate the tutorial, I did run into a run time error that says Accessed None, trying to read Property Player inside the increase stamina function, wrapped my head around it for a few hours but could not figure it out, any suggestions?
@DnlMysticGoku
@DnlMysticGoku Месяц назад
Doesn't look like the health actually increases upon level increase at 23:34. Any thoughts?
@lipagav232
@lipagav232 3 месяца назад
When stamina runs out, I can't sprint again even if stamina has recovered. 4:04
@TDF56
@TDF56 Год назад
I'm having this bug where entering the sphere radius the assassination HUD keeps flickering if it makes sense and pressing the assassination key doesn't immediately cause the animation
@jakerussell389
@jakerussell389 6 месяцев назад
Did you ever figure this out Im having same issue
@chrum91
@chrum91 Год назад
I'd love to see the database for the XP required, I was thinking of using a multiplier but a database would be much more dynamic and changeable for future updates to games. Great work once again bud!
@jouzou4645
@jouzou4645 Год назад
My Exp Bar is not updating when i increase exp,any help?
@beppolaut605
@beppolaut605 Год назад
@Gorka Games i need a system for each enemy and each lvl difference between the actor and the enemy. because in other games the earned exp will go down too.
@amusingk7905
@amusingk7905 2 месяца назад
I am in love with this tutorials, i am learning something... finaly... thank you I have a problem about the stamina Run: When i Press my Key for Sprint (in my case Shift), The Functions works well, the stamina be restored and so on, but when i end all the stamina i stop sprinting but (the stamina is restoring) after is all back, i remake the input for sprinting but my character doesn't do and still walking with all stamina restored. I looked the Blueprint many times but is all write right. If you can help me pls (sorry for the bad English)
@DnlMysticGoku
@DnlMysticGoku Месяц назад
PREVIOUS Episode at 20:28. After Clear and Invalidate Timer by Handle he adds a SET IsSprinting node (unchecked). Exiting this boolean node you need to add a SET Can Sprint node (with a checkmark)
@MrSmoosh
@MrSmoosh Год назад
HELP!!! When my stamina bar reaches 0 it refills but i cant sprint again, i also cant crouch after it has reached 0. Also when i am sprinting and i press the crouch button, it just stops me sprinting, doesn't crouch, doesn't effect the camera just stops me sprinting.. please help as i truly don't want to break my laptop today :/
@ManPanic9
@ManPanic9 Год назад
Were you able to figure out the problem? I am seeing the bug of not being able to sprint once my stamina reaches 0
@ToverHoma
@ToverHoma Год назад
In IA_Sprint on your character BP, Follow the completed line, and at the very end, set Can Sprint to true
@madara.artist
@madara.artist Год назад
​@@ToverHomanot working
@killerthepro756
@killerthepro756 Год назад
Great video but i have a question will you make a video about the AI where if it hits you it jumpscares you i know that you made a tutorial about jump scares but you haven't made a tutorial on how to implement jumpscares with AI would love to see that no one teaches this but you can be the first
@AutumnRainTurkel
@AutumnRainTurkel 9 месяцев назад
For some reason when my Stamina runs out. I can no longer sprint once my stamina regenerates. Anyone have any ideas on a quick fix?
@EchoesEmbrace
@EchoesEmbrace 9 месяцев назад
I had the same problem and this comment from @smitf231 fixed it. Quoting @smitf231: go to your stamina section in your BP_ThirdPersonCharacter, event tick after calling the Increase Stamina function, place another SET "can Sprint" node - ticked.
@djsalis
@djsalis 10 месяцев назад
Will this system work when the character changes levels in the game?
@acelyadehneli9534
@acelyadehneli9534 8 месяцев назад
Thanks to you, I am learning things I have never learned yet. It has been an incredible training set. Thank you very much for sharing such a work.
@thedohmas
@thedohmas Год назад
Awesome tutorial man. To account for excess XP when leveling up: In the beginning of the Increase Level function you should subtract the Max XP from the Current XP and at the end you should put your Increase XP function with 0 added XP instead of setting XP to 0. This will loop the two functions untill your Current XP doesnt go over your Max XP, so if you get 5000 xp you dont just gain one level and rest of it is wasted :D
@neilluctelang2701
@neilluctelang2701 10 месяцев назад
thank you!!!
@MysteryShot
@MysteryShot 10 месяцев назад
Hey, i know its been a month, but do you have a screenshot of the fix? I'm bit confused where to add it exactly at start and and the end.
@tylerunderfirevr
@tylerunderfirevr 5 месяцев назад
​@@MysteryShotI've got a screenshot of exactly what he's talking about, it took me a couple weeks to understand the system fully, in fact making an actor blueprint is probably best to use mainly for enemy stats across a wide variety of enemies that have different health values
@jasonheilig5312
@jasonheilig5312 5 месяцев назад
thanks
@biraj047
@biraj047 8 месяцев назад
Binding the xp and level text in Widget itself is much simple and easy to follow than this all. Anyways you are doing a great job, Learning the other way around is fun too.
@DoAGoldeneye
@DoAGoldeneye 4 месяца назад
I actually somehow like all the inefficiencies he puts in. It triggers my "this can be done better" reflex and forces me to look up alternate approaches. Also, as I learn more, I try to implement what he's trying to do BEFORE I watch his explanation and then see if I like his better than mine.
@thebugski8215
@thebugski8215 Год назад
Just a comment to thank you for your work.
@GorkaGames
@GorkaGames Год назад
thank you I really appreciate it!
@Zorkul93
@Zorkul93 Год назад
Hey Gorka, amazing tutorial so far! I was wondering, do you plan on showing how to connect certain events from the Widget to display when you level up? I'm trying to figure out how to have a widget animation play when the character levels up and I'm having a hard time figuring it out. Keep up the awesome work, man!
@Ya_Boi_Raptor
@Ya_Boi_Raptor Год назад
Dude!!! Yesss we back at it lol was getting itches not being able to see ya vid yet lol 😂😂
@GorkaGames
@GorkaGames Год назад
hahahaha yess!!!
@emrahcoban4488
@emrahcoban4488 9 месяцев назад
You have completely changed your crouch system from the one where you made it in first episode? And didn't show it to us a nd now I can't follow wth is going on lol. Anyway, I guess I'll check for a better teacher. Thanks for free videos.
@cgxlv
@cgxlv 7 месяцев назад
I have just completed video 7 and crouch works perfectly for me. Looks like you missed something and not the teacher.
@RhyzzG
@RhyzzG 3 месяца назад
6:35 Is when Levels and XP stuff starts
@briannguyen80
@briannguyen80 4 месяца назад
I got the error of Set Percent in Increase Stamina for some reason
@TinoPlusUltra
@TinoPlusUltra Год назад
Great Video, I'm having an issue where when I debug for next level everything is working properly but the increase level goes from 1 to 0 and then stays at 0. Having a hard time figuring out what exactly might be causing this. Any help is greatly appreciated :)
@TinoPlusUltra
@TinoPlusUltra Год назад
Update - As expected I missed a really small detail, one of the nodes wasn't connected. Everything is working great :)
@arthurpereira8717
@arthurpereira8717 Год назад
Do a tutorial on how to make a Nextbot
@Evanreadsalot
@Evanreadsalot Месяц назад
i cant crouch what have i done wrong
@draicor
@draicor Год назад
At 3:37, you missed connecthing the bool result of the AND node on the crouch bool, thats why it was trying to crouch while sprinting mate!
@paulshelkov7956
@paulshelkov7956 Год назад
It is connected. See 3:18. It's just that it's also passing through on 'False', and the timeline is being run on both 'True' and 'False'.
@RSProduxx
@RSProduxx Год назад
Nice. Will take a few days till I get there.
@GorkaGames
@GorkaGames Год назад
😄😄
@marcorodrigues3067
@marcorodrigues3067 9 месяцев назад
Too bad you can only enjoy it once, very good, best channel👏👏
@GorkaGames
@GorkaGames 9 месяцев назад
Haha thank you so much man!!
@lohkiiinteractive3675
@lohkiiinteractive3675 11 месяцев назад
Some how in the last video my Die custom event broke. Now my character doesn't trigger Die when hitting 0 hp. Not sure what made it stop working... Anyone else encounter this issue? PLEASE HELP :(
@edmunddarko783
@edmunddarko783 7 месяцев назад
Hello Gorka, Thank you for your work. I realized after the Stamina fills up if you press on the ALT ( Sprint Key ), it does not decrease anymore.. Any help?
@TT_Teck
@TT_Teck 2 месяца назад
Few tricks I did - Off of first branch for EnhancedInputAction IA_Crouch - Made the Sprinting go into an not then to the or and plugged Sprinting? into the other end of or and then added all of that to the second input pin on the AND operator going into the first branch. (This is so I can press crouch while walking or sprinting and) - In stamina section, Going into the first branch off of drain stamina. I added the same thing we added to the start. The Crouched? -> NOT -> And for 1 pin and Can sprint in the other pin to go into the branch condition coming out of drain stamina. (This was due to a bug where we were still depleting stamina if you held shift after pressing crouch, you would still deplete stamina.) This might get fixed or be irrelevant later on, just wanted to share. This is an awesome series so far, cant wait to catch up
@LeonKohl-z5k
@LeonKohl-z5k 8 месяцев назад
I just finished this Tutorial and when testing everything i noticed that my Dummy is realy buggy when assasinating him. he plays the animation in only a few frames and aferwords often buggs out of the world. Any clues what could be Wrong? After the Assasination Tutorial everything worked fine.
@jeffdastan1145
@jeffdastan1145 Год назад
Hey Gorka, you've been coughing since the first episode, do you have a cold or something? I'm really worried. Stay healthy, man.
@marc2022
@marc2022 5 месяцев назад
UE5,ue5.2 or 5.4?
@daytonchan11
@daytonchan11 4 месяца назад
amazing series i've been following the series and everything works great. i did come into a few issues but thats just when i wasn't paying 100% attention lol
@Qudrex
@Qudrex 10 месяцев назад
anyone else having an issue with crouching? when I crouch it plays like half the animation and returns to standing. I have to hit the crouch button 3 or 4 times to actually crouch, and 3 or 4 times to return to standing from crouching
@FireShipStudios
@FireShipStudios 6 месяцев назад
Know the fix?
@pacificnoble4513
@pacificnoble4513 6 месяцев назад
having the same problem too @@FireShipStudios
@TolisPiperas82
@TolisPiperas82 Год назад
In stats will you add strength and defense whitch will grow with the level up?
@GorkaGames
@GorkaGames Год назад
yes good one!
@TolisPiperas82
@TolisPiperas82 Год назад
@@GorkaGames and different weapon with different blendspaces and attack animations?
@TolisPiperas82
@TolisPiperas82 Год назад
@@GorkaGames today we dont have episode😒😒?
@maratbaybikov3549
@maratbaybikov3549 5 месяцев назад
It would be also a good idea to make 2 float variables for SprintSpeed and Run Speed. Makes it easier to adjust this values :)
@locknickmonster721
@locknickmonster721 10 месяцев назад
4:30
@seansopata5121
@seansopata5121 7 месяцев назад
btw, at 10:00 when creating an input for the increase level function, if you click the dropdown arrow in front of the input item in the details panel, you can set a default value of 1. That way, you can always just call it, knowing it will be 1, but can change it if you want.
@KekShakLo
@KekShakLo 8 месяцев назад
@GorkaGames Will there be more done with the stats such as points to spend on perks and other stat systems such as strength, dex, or even a magic system implemented with mana?
@ger_skyking7455
@ger_skyking7455 9 месяцев назад
31-12-2023 23:52 Happy New Year Best Projekt for the Day
@magegames6202
@magegames6202 8 месяцев назад
after the first branch in sprinting add another branch for velocity vector length > 0 if yyou arent moving and hold sprint you wont drain stamina
@sirmanbeard910
@sirmanbeard910 Год назад
Hey brother. Man i'm scratching my head. Everything is working exactly as intended... except I am having the hardest time connecting [IncreaseXP] to my enemy. Any ideas?
@magegames6202
@magegames6202 8 месяцев назад
one thing i noticed is when i jump on the bue cubes they sink into the floor will this be addressed in a further ep? dont wanna set barrels and things that should get knocked over up if theyre gonna sink too using the same physics set up on those objects
@RyanFoley-cz5df
@RyanFoley-cz5df Год назад
good except 13.39 in it you use a random thing and you don't tell use where to get it
@sakshamcraftminecraft
@sakshamcraftminecraft Год назад
It's 11 am in India broo gonna get some sleep
@GorkaGames
@GorkaGames Год назад
haha yeah get some sleep man
@Teedubzzz
@Teedubzzz Год назад
Why tf do u have a whistle in your intro, im at work and keep thinking someones whistling at me lol
@jc81277
@jc81277 Год назад
I added the sprint function while crouching by first going into the "Crouched" Blendspace 1D file and dragging in another crouched walking animation at the 175 mark. Under asset details change rate scale to .75. In the thirdpersonBP, add an "IsCrouched?" branch after the "Can Sprint" branch. Copy and paste the "Set max walk speed" and Character Movement component, paste after branch and connect True from the "IsCrouched" branch to walk speed node. Set crouched sprint speed (I did 500). On the "Completed" IA_Sprint node, place another "IsCrouched" branch before the "SetWalkSpeed". Connect False to Tutorial programming. From True, "Set max walk speed" ->"Delay .1" -> "Increase Stamina function". Connect "Increase Stamina" to "Clear and Invalidate Timer by Handle". That's how I did it.
@tdswagspike1491
@tdswagspike1491 Год назад
Great video :) but i have some issues with locomotion. When i press the crouch button while running my character doesn't crouch but the speed is set to 500 instead of keeping the sprinting value of 750. idk if its just me or you have this problem too ?
@ikeymci
@ikeymci Год назад
Figured out how to fix it by myself. Just add branch on the "not crouched" way with "set max walk speed at 750" if sprinting and "set max walk speed at 500" if not
@jared875
@jared875 Год назад
@@ikeymci Great job on this! Thank you
@kershiveryt1816
@kershiveryt1816 Год назад
@@ikeymci Sorry I don't understand, which "not crouched" way ? I don't quite understand where to put the branch ... Then, it's in the condition "sprinting?" and true "max walk speed 750" and false "max walk speed 500" ? Thanks for the solution !
@trypresident774
@trypresident774 Год назад
Can u make a tutorial on how to unlock items in shop at certain levels like if I have a gun in the shop an want to buy it but iam a level 3 an the gun unlock at level 15 then I can buy it once iam level 15
@sabalax
@sabalax Год назад
when i start game my default level is 0 but its level upping me and start as 1 how can i fix that
@TolisPiperas82
@TolisPiperas82 Год назад
In combat system will have different weapons different blendspases and attack animations?
@manashieldmedia
@manashieldmedia 11 месяцев назад
Anyone know what I'm doing wrong? When I extend the Blendspace to 750 and add a faster running animation, it shows the sped-up Fast Run animation in the preview, but it doesn't show in-game? It just uses the same slow animation while sprinting :/ Everything else worked perfectly. Love you so much for these :)
@tylerunderfirevr
@tylerunderfirevr 5 месяцев назад
Make sure the max walk speed in the character movement component attached to said character running at that speed is said value
@Sergioiznaola
@Sergioiznaola Год назад
eskerrik asko Gorka por el doble aprendizaje UE5 + Inglés :)
@rremnar
@rremnar Год назад
A thumbs up for the formatting text procedure. However, your code could be cleaner by making a function or variable for getting the HUD. or any other complex thing requiring casts and such. If you have reuable code, its best to put them in functions, macros, and/or variables.
@Funny_mustache_guy
@Funny_mustache_guy Год назад
You’re actually one of the best people I have watched in my whole life
@siwatbas
@siwatbas Год назад
It will be nice if at the end you have a tutorial how to replace to animation to this project in case someone have purchased some asset
@siwatbas
@siwatbas Год назад
Ue5 retaget and thing like this
@GorkaGames
@GorkaGames Год назад
Yeah I do already have some retargeting tuts, but I can extend it to the RPG Series
@chavlaz
@chavlaz 10 месяцев назад
8 months late but hey thanks for these videos
@dollggwp7948
@dollggwp7948 7 месяцев назад
Mission #7 Successfully completed !!!! !!!! TY !!!!
@trypresident774
@trypresident774 Год назад
How do I make this tutorial multiplayer
@ZeliusDev
@ZeliusDev 10 месяцев назад
My Level starts at 2 and max xp starts at 250, can't figure out how to fix this :(
@ZeliusDev
@ZeliusDev 10 месяцев назад
Nevermind, I fixed it by removing the Increase Level NODE in BPC_PlayerStats and reconnected the NODE's on either side :)
@NewLegendPictures
@NewLegendPictures 9 месяцев назад
For some reason, when I deplete my character's stamina I can't "re-sprint". I'm not sure why.
@Boothe191
@Boothe191 8 месяцев назад
I'm having this exact same issue
@mickeytjr3067
@mickeytjr3067 Год назад
Why not just make them stand up or stop sprinting and crouch?
@Phoenix4_Trade
@Phoenix4_Trade Год назад
are you make graphix like game original ?
@GorkaGames
@GorkaGames Год назад
yes that is the intention! with the power of UE5 it should be easier.. 👀👀
@Phoenix4_Trade
@Phoenix4_Trade Год назад
@@GorkaGames so we are see a great titurial
@doller6584
@doller6584 Год назад
Can you make mobile games using ue5🤔
@GorkaGames
@GorkaGames Год назад
Maybe in the future i could make some videos on making mobile games in ue5 yeah!
@doller6584
@doller6584 Год назад
@@GorkaGames thank you I wanted that☺️
@benzyYT
@benzyYT Год назад
First
@GorkaGames
@GorkaGames Год назад
😄😄
@javierzafra3493
@javierzafra3493 11 месяцев назад
He visto mientras probaba que si corrias con el boton de correr hasta quedarte sin estamina despues no te dejaba volver a correr no se si es fallo mio o en la serie ocurre lo mismo. I dont know if is my bad or is a bug that i found. I hpe u can help me
@squuishy7909
@squuishy7909 10 месяцев назад
si yo tambien
@B31L
@B31L Год назад
cool
@GorkaGames
@GorkaGames Год назад
thanks!
@SifuGenx
@SifuGenx Год назад
i followed the video as precisely as possible and i end up with " Blueprint Runtime Error" on set percent graph, increase stamina function and BPC Player stats. what did i miss?
@jakerussell389
@jakerussell389 6 месяцев назад
Did you ever find out what the issue was with this Im dealing with the exact same thing
@SifuGenx
@SifuGenx 6 месяцев назад
@@jakerussell389 i did not. I moved on to a different video :-(
@Goofer_Jr
@Goofer_Jr 6 месяцев назад
I had the same problem with the "Set percent" in Decrease Stamina. It seems that it tried to target something that has no value. After investigation I saw that the "in percent" had a divider that divided "Current stamina" by "Max Health". Ofcourse those 2 are not connected so the max health had no value and caused me the error. Maybe something simular is going on with your problem? The errors tells you it has no value. So try to search what the value is that he is searching for and if its the correct value or not.
@OgLoc8934
@OgLoc8934 Год назад
nice
@GorkaGames
@GorkaGames Год назад
thanks!
@stealthshadow51
@stealthshadow51 Год назад
Are you going to make the vaulting more smooth my character slightly stops for a second after vaulting
@stealthshadow51
@stealthshadow51 Год назад
Before you released this video i added a crouch run mechanic too so im gonna make it so i can do that instead of not being able to crouch or sprint when doing either
@GorkaGames
@GorkaGames Год назад
later on we will add more vaulting sytles and we may retouch some of the anime warping. But make sure that you placed your anim warping in the anime monatge correctly, if so you can retouch it t o make a smoother transition
@GorkaGames
@GorkaGames Год назад
@@stealthshadow51 yeah great!! you can personalize all this as we go!
@Ya_Boi_Raptor
@Ya_Boi_Raptor Год назад
@STEALSHADOW51 Yo same I like to slowly crouch then crouch sprint, it's great for a fast and sneaky esscape
@stealthshadow51
@stealthshadow51 Год назад
​@GorkaGames its not the vault montage or animation i made the animation itself what happens is when the mode is set to walking it stops the player character for a split second
@chaseeasterly
@chaseeasterly Год назад
Hey, my level starts at 2 and my current exp starts at 100 (causing me to level up). The current exp is set to default 0. Any advice on how to fix this?
@chaseeasterly
@chaseeasterly Год назад
Nevermind, I figured out how to change it.
@sabalax
@sabalax Год назад
@@chaseeasterly can you explain how did you fix it i have the same issue
@kalaskar123
@kalaskar123 Год назад
How is your health now
@kkarbokgaming4556
@kkarbokgaming4556 Год назад
23:13
@santhoshkumarb7
@santhoshkumarb7 Год назад
First
@GorkaGames
@GorkaGames Год назад
😄😄
@santhoshkumarb7
@santhoshkumarb7 Год назад
@@GorkaGames 😄
@santhoshkumarb7
@santhoshkumarb7 Год назад
Amazing video
@GorkaGames
@GorkaGames Год назад
thank you!!
@santhoshkumarb7
@santhoshkumarb7 Год назад
@@GorkaGames your welcome
@JC-ex5ve
@JC-ex5ve Год назад
Thank you again
@TheMetalProject
@TheMetalProject Год назад
works great thanks
@roydash5657
@roydash5657 Год назад
Awesome!
@GorkaGames
@GorkaGames Год назад
thanks!
@roydash5657
@roydash5657 Год назад
@@GorkaGames no problem
Далее
Unreal Engine 5 RPG Tutorial Series - #9: Combat
37:13
Просмотров 105 тыс.
DAXSHAT!!! Avaz Oxun sahnada yeg'lab yubordi
10:46
Просмотров 515 тыс.
Лайфак года 😂
00:12
Просмотров 103 тыс.
DAXSHAT!!! Avaz Oxun sahnada yeg'lab yubordi
10:46
Просмотров 515 тыс.