Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Nintaku

#1
That's wonderful, thank you! I haven't had a lot of time for development this last month or so, but I'm glad this test run was good. Once I can crack back into my next project, I plan on incorporating a lot of what I did here to ensure a smooth adventure.


Thank you for playing!
#2
Development / Re: Changing Basic Traits
April 06, 2021, 06:06:30 PM
Alright, so I'm working on two separate concepts at the same time here. First is the aforementioned ranks and equipment, and second is the less mentioned setup for character stats.

Here's my repository for these scripts: https://github.com/AgentNintaku/reclaim-the-wild/tree/main/data/scripts/rtw

ranked_equipment.lua - I've expanded on the suggested data script, including tables for Ranks 0-5 to apply to my 17 Weapon classes and 4 Armor classes. Still figuring out the language, though, so not sure I've got this right. When I create individual weapons, I really do want to simply call a rank and a weapon class and add them together, with the ability to add in other special modifiers to represent enchantments that will modify things like character traits (we'll get to that) and the weapon's inherent values. It should only require a couple of fields: id, rank, class, and then anything unique to it.

data_loader.lua - I haven't really touched this yet, but been studying it in hopes of getting some insight into how I can phrase my ranked_equipment tables for ease of use.

traits.lua - Here's another important portion of this project. I want the hero and monsters to have Traits, basically RPG stats that can be raised with experience points and have game effects. Most of them don't seem particularly useful to a videogame at first glance, but I have plans. And I can just take out what turns out to not be useful as I move deeper into the project. Point is, I'm not sure how to implement them on the hero. I'm pretty sure I can make good use of the Level and Experience scripts elsewhere to work with these, however. But then I'll need to make my own subscreen for spending points on these traits.

So that's where I'm at so far. At this point I feel I should probably move my updates over to Your Projects, so that'll be where my next post goes.
#3
Development / Re: space shooter games in solarus?
April 06, 2021, 04:44:31 PM
My immediate thought would be to take the script for side-scrollers, particularly the gravity component, and apply gravity to everything except the player. Then I believe there's code to have a sprite always facing a specific direction even when moving. Reskin arrows into pewpews and you should be golden, right?
#4
I've taken what I've learned and put it together to create my first ever videogame! It's ready to let people see it, and I'm very excited to see if it works for others and is really in the playable condition I think it's in. And I'm just getting used to GitHub too, after a few years away from it.

The GitHub repository is here: https://github.com/AgentNintaku/perlshaws-problems/

The .solarus is here: https://www.dropbox.com/s/7cw75fp3m0cgobe/Perlshaws%20Problems.solarus?dl=0

If this is working just fine, my next projects will be somewhat more ambitious.
#5
Development / Re: Changing Basic Traits
April 01, 2021, 10:23:13 AM
That's fantastic, thank you! :D Before I'd just made a series of values. Plugging my data into this should help handle things quite nicely.
#6
Development / Changing Basic Traits
March 31, 2021, 01:50:50 AM
Hello! I'm excited to be beginning my Solarus journey, and already have rather ambitious goals in mind. I will of course be putting together a small quest to get used to the way the Solarus bits are put together, but after getting my bearings I plan on converting a Zelda-based tabletop RPG system into Solarus as 1:1 as possible. The first step in my plan is setting up the ability for the hero to collect and use different weapons, which is pretty accepted already, but I want to have those weapons be interchangeable. Maybe the hero ditches his Sword for a Spear instead, and now has different damage and the spin attack is replaced.

I've already gotten ahead of myself and started putting together things I'd need. So far I have a script that lists out the base values of weapon and armor ranks, and another listing the exact stats of weapons. I'll probably merge them into a single script at some point, but right now they exist for me to pull data from them so that, for instance, if rank 1 is 6 and sword_att is +0, then rank1 + sword_att = 6 damage. With spear_att being -1, then rank1 + spear_att = 5 damage. Then the target's Defense trait would reduce that damage to a minimum of 1, rather than tunic rank dividing damage.

Any pointers or tips on how to accomplish that would be much appreciated.

I've also started the same project in RPG Maker MV, but I prefer the Solarus engine so far. It's easier to manipulate to do just what I need, once I can figure out what I need to do.