Thank you, from the bottom my heart, I spent the last 2 hours trying to figure out the math, as I suck ass at it, and you not only showed me how to do it, but also explained it. You're the kind of people that allow me to learn and improve my self, without people like you teaching, there would be no one learning, thank you for real.
@Playlists_plus77072 жыл бұрын
I just wanted to say, I love how you are so thorough as to show us every step on every sprite and blue print. It really makes your content so much easier to comprehend/follow. Thanks so much.
@ericmatthews9894 Жыл бұрын
Finally, simple and without all the structures, enums and weapon blueprints. Thanks
@sinayagubi88053 жыл бұрын
I think I just found a very underrated KZbin channel with great content for free 🤔
@gonfurnier69413 жыл бұрын
Thank you so much Matt for all your tutorials! Your videos about implementation and animation for the player control are super useful to me! Keep doing them because you are an excellent teacher, cheers from Argentina
@pickard12 жыл бұрын
Everything you post is fantastic. I had a Gun Blueprint in my project but this showed me how to migrate almost everything to my Third Person Character and it all worked perfectly. On to Part 4!
@nekospaw11 ай бұрын
just wanted to say thanks for a nice, easy to follow tutorial - really helped with my HOTD style shooter!
@IllGib Жыл бұрын
Dude, by accident hopefully you just helped me solving a problem i had with my inventory/build system XD I couldn't find a way to update the amount of resources i have in my inventory after i dropped into the building to repair, now seems to finally work after days of research!
@stevewynn46123 жыл бұрын
It will be fun to see the fps games that folks make after watching this series.
@dylanking000archive3 жыл бұрын
man thank you so much for this series. so far zero problems in ue5 btw
@soyoliver41193 жыл бұрын
Thank you so much for this videos man, don't listen to the bad comments, I am actually falling in love with Unreal just because of you. Unity made me fall out of love with game dev, it is so much more complicated than Unreal, you make it look so easy, keep doing the great job you do man and thank you so much!
@BillionaireMarket Жыл бұрын
you missed what if the current mag is already full. it allows me to reload still.
@aceniper8239 Жыл бұрын
when my bullets are at 0 i can still shoot? can anyone fix this problem?
@devactor95952 жыл бұрын
u are the best
@RomeoVarga4 ай бұрын
Thank you so much, Matt! Wonderful solution. For me reloading ends up with 1 extra round which is weirdly displayed as a number equal to the remaining max. Example: start with 30/120. Reloading results in displaying 90/90, fire one, it then goes to 30/90 (as it should be). Reload again, 60/60 etc. Also, the last clip gets anulled: when left with 0/30, reloading results in 0/0. Anyone else experience this?
@Progamezia3 жыл бұрын
Amazing as always,this is a lifesaver because I'm working on an fps
@MukulchSarma-tp3oe3 жыл бұрын
I don't know what can I do for you, except Subscribing??!! Your are so much dedicated!!! And, what to say about the tutorials???!! Great!!
@ahmedalhawar5952 жыл бұрын
Bro you is a living legend
@trypresident7742 жыл бұрын
question what if iam tryin to add more then one gun how do i do that like i wanna add a pistol an another rifle please help thanks
@RealJackJames3 жыл бұрын
Thanks
@selimsaidi3784 ай бұрын
hello thanks a lot for all your tut dude ! can you cover ho to make a shotgun or sniper reload ball by ball ? it would be awesome
@BamboosGood2 жыл бұрын
Great tutorial as always! I tried to do this myself but my brain kept hurting lol, should of probably slept more.
@tomhikon Жыл бұрын
That's normal when programming anything really 😅
@jlaw22573 жыл бұрын
Could you do an aiming or iron sights system next. Love the series btw!
@wolfiedgr8t3 жыл бұрын
Excellent Matt thanks 👍
@M0n0026 ай бұрын
Can someone help me? I wanted to put an animation on this but when I tried my character did the animation but stayed t-pose for a few seconds afterwards, what can I do?
@gnclx3 жыл бұрын
Can you make inventory system next tutorial?
@scoppergaban1682 Жыл бұрын
Everything is very good, the only thing that's a shame is the customisation, because your blueprint doesn't allow you to have several weapons with magazines that have a different number of rounds. For example, if I have a pistol (10/100 rounds) and I use your nodes, when I reload, it will come to (30/70) ... because you ask for the return value to be "30", you can change it of course, but that still won't allow you to have several different weapons, unless you copy the function...
@ciastuch_plastuch Жыл бұрын
I just want to know if You have different types of guns (f.e. pistol and assault rifle with different amount of magazine size) - How to set the reloading amount of bullets at 4:35 ?
@ciastuch_plastuch Жыл бұрын
Okey, i figured it out already :) I've set the pickup class for guns and set different amount of bullets in magazine, then I used this construciton in reload/use ammo tree :)
@joshknight24632 жыл бұрын
What if I want to reload a single bullet with one shot at a time before reloading as it has been breaking it
@Cojanx13 жыл бұрын
works perfectly :) thanks
@Saz-wy5bg2 жыл бұрын
This is a great video but if you just spam "R" the reload sound will continuously repeat even if the gun is full and not reloading.
@Deserthound2 жыл бұрын
This is easily fixed by adding get current mag and less than 30, attaching that and the !=0 to an AND node and connecting that to the branch before the do once node
@Abran_122 жыл бұрын
@@Deserthound Same Problem. Tried your solution but it wont work. other than that its great
@Deserthound2 жыл бұрын
@@Abran_12 hmm not sure honestly , it worked for me when I had it set up that way but it’s been a while since I had that project open
@Abran_122 жыл бұрын
@@Deserthound its good its a small fix everything else is fine
@PROTOTYPZ2 жыл бұрын
@@Abran_12 did you make sure to add the Do-Once node and also add a delay?
@thatchyhurdle42712 жыл бұрын
where do i add a sound effect so that it makes a noise when you are trying to shoot with 0 bullets ?
@LocutusMoW2 жыл бұрын
I had the same problem.
@salsalvador83172 жыл бұрын
@@LocutusMoW I'd say in the firing logic use a sequence: from the first point start you firing code, from the second start a branch and if ammo and magazine= 0 then play a sound. Be aware that you'll need a do once node if your weapon is automatic, otherwise the sound will be repeating as long as you press the shooting button
@devactor95952 жыл бұрын
Thanks ur the best!
@kiseli666 Жыл бұрын
Amazing tutorial, thank you very much. You are a great teacher. Everything works but I am making VR shooter game and have 2 pistols for both hands. When I call the function no matter with which gun I am shooting both guns are using ammunition, I figured because it is same function. SO is there a simpler solution than to recreate everything again for second hand/gun?
@tomhikon Жыл бұрын
I'll be honest I never got it to work properly for myself. However look up using a flip-flop node in where the projectile is spawning from. There were a couple sites I saw talking about it.
@kingukitsune5622 Жыл бұрын
Hello Mr. Aspland! I have a important question: Is there a way to add ammo to the max ammo through item pickup? I've tried Google and couldn't find any related topics other than setting ammo for different weapons. I visited Unreal Engine Dev community and even tried to AddCustomEvent>AddAmmo into the player blueprint but I haven't any luck. My integers are Ammo (Mag) and MaxAmmo (Max Ammo). I implement the Temp Ammo (for me, Starting Ammo) into the function and whenever I go pickup the ammo item, either nothing happens or the Mag increases past its limit (50). Here are my Integer values: Ammo (50), Starting Ammo (50), Max Ammo (360). Did I miss a step or are my Integer values wrong? Thank you very much V/r Kitsune, K.
@IllGib Жыл бұрын
Tried to add to the Max of the clamp node? Probably is that's blocking the mag to go over it's previous max.
@itzamino9953 жыл бұрын
I already did what you say but my ammo is auto-reloading when I press the fire button any help
@Salih_Ertürk2 жыл бұрын
Do you mind if I try these on 5?
@POPCORNGameMovia2 жыл бұрын
Hey and friendly greetings :) I did everything all works fine, but only when shooting walls and floor. Is there a way to decrease ammo when shooting zombies? I use line trace and point damage. Thank you for the tutorial, really useful.
@timkerchman21912 жыл бұрын
So I'm following this series. I was wondering how to implement the not unlimited ammo? I got notes from other sources but when put the code in the math just doesn't seem 2 add up.
@timkerchman21912 жыл бұрын
Meaning when I put the supply crate to add ammo it doesn't do the math correctly with the way your series goes. I know the notes work when I follow the video from where I got them so any help would be appreciated .
@dizzy2k-_-4109 ай бұрын
everything is fine untill it comes to using the weapon again it just doesnt shoot h
@RozvozceTofu2 жыл бұрын
nice, tryed first time with replication and works perfectly
@flyingroads34982 жыл бұрын
thanks a lot
@flaviocosta198 Жыл бұрын
thankss
@Faizy_Writes3 жыл бұрын
John Wick Game! 😃
@charan32783 жыл бұрын
How to make it work in mobile
@thebluepurple Жыл бұрын
Hey Matt, I have followed this tutorial but I can still shoot when it hits 0/50, could you help?
@sweatyhaggis4303 Жыл бұрын
Having this same issue
@cyclo9203 жыл бұрын
First comment! Yay
@DianeSLang3 жыл бұрын
Is Unreal Engine 5 programming blueprints functions work the same way as Unreal Engine 4 so another words buy me watching tutorials for ue4 will they working on unreal engine 5 please reply
@Deserthound2 жыл бұрын
yes some things are named different like multiply float is just multiply now
@ZeroNineFilms2 жыл бұрын
it was going fine till i added the reload function an viewport display like i tested the gun it shot sounds worked but after everything else when i start it it doesn't shoot any more Edit: it was cause i didnt set my things to not equal to but now my ammo text doesnt change but shooting do work
@JOEFRAUST9 ай бұрын
I'm having a similar problem where my ammo doesn't move at all
@Springrollsamurai3 жыл бұрын
I can’t find game files pls help
@patrickmiller17232 жыл бұрын
Having a bit of trouble my gun is only showing 0/0 in the view port does anyone know why ?
@maaschmellow26832 жыл бұрын
2:05 ;D
@luckyraj8153 жыл бұрын
Next deathmatch system
@booradev3 жыл бұрын
umm who is that 1 dislike? Unity user?
@yaroslavazxM3 жыл бұрын
Maybe I'm fourth?
@kids243592 ай бұрын
dosnt work
@ZXQ073 жыл бұрын
What about reloading automatically when there is no ammo in magazine?
@meganmartin93243 жыл бұрын
you can put a branch with the condition as ammo in mag = 0. On true call the reload function
@s.e.c.u.83403 жыл бұрын
@@meganmartin9324 and if there are no spare ammo you could make it play a click sound
@ZXQ073 жыл бұрын
@@meganmartin9324 thank man
@ZXQ073 жыл бұрын
@@s.e.c.u.8340 thank man
@s.e.c.u.83403 жыл бұрын
@@ZXQ07 np
@glorymanheretosleep9 ай бұрын
Hmnmm....after I press the reload key, the firing won't start again.