Home Artists Posts Import Register

Downloads

Content

Hey everyone, In this tutorial we'll look at how to implement weather conditions. In my pokemon tutorial series on youtube, I was planning to cover the core features first before we moving onto more advanced ones. But, since some my Patrons have requested this feature, I thought I'll make an exclusive tutorial for it.


I've attached the scripts files below so you can use it as a reference while following along, and you can download the complete project files from this post https://www.patreon.com/posts/complete-project-39632268


I'm planning to post tutorial for other advanced features like Abilities in this way. (Abilities are really complex, so I'll probably cover some simple ones & point you to the source code of the others). So let me know what you think about it.


Thanks a lot for supporting me in the journey. I'll try my best to provide maximum value in return for your support :)

Files

Pokemon Game Tutorial - Weather Conditions (Advanced)

Comments

Phoenix Games

Hey man! I just implemented the weather conditions... but because of the change from HPChanged to DecreaseHP, etc. I have some errors... Could you help me please? It says: "Cannot convert method group 'DecreaseHP' to non-delegate type 'bool'. Did you intend to invoke the method?" Could you give me a hint please?

gamedevexperiments

Hey, looks like you're trying to invoke the DecreaseHP function. Decrease is not an Action that we can invoke. So you should call it like DecreaseHP() instead of DecreaseHP.Invoke(); If you're not able solve the issue, can you post a screenshot of your code & the error details in Discord for patrons. It will help me understand what's causing the error.

LDVR1995

Two questions, this tutorial as well as other patreon exclusives, will you never upload them to youtube? In advanced features you have introduced the abilities. I'm wondering how they work from what I've seen since I thought they would be created as scriptableObjects like moves but I don't see an AbilityBase script. Thank you