• Welcome to Final Fantasy Hacktics. Please login or sign up.
 
April 17, 2024, 11:29:59 pm

News:

Use of ePSXe before 2.0 is highly discouraged. Mednafen, RetroArch, and Duckstation are recommended for playing/testing, pSX is recommended for debugging.


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.

Messages - bcrobert

1
Just thought I'd comment on the Control/Morph question. For Control you may have to use my Ability Effects nightmare module (not the main Abilities module, the other one). I'm not sure if AIO supports changing targetable race, but I'm 99% sure that one of my modules covered it. Basically you would be looking for the targeted race and just changing it to target all monsters. (The function already exists for effects like Sidewinder, no need for coding.)

As for Morph, that's a whole thing. Since it draws so much data from the Monster Bank, you'd want to essentially cut it off from its initial functions completely. The abilities would need to be rewritten to ONLY change your available A-ability lists, instead of reading a tamed monster's data and changing your stats and blah, blah. (Otherwise you'd need to eff with how the ROM interacts with monster bank data in RAM at every possible point, including making any monster that's morphable capturable. Which would ALSO be a whole thing. That's why I suggest just cutting it off of its original functions and rewriting the ability from scratch.)
2
"Unlocked" and "revealed" maybe?

Also another possible take on the invite ability: It could temporarily store the character in the clan data. So even though it mechanically is giving you the option of whether to delete the temporary character or not at the end of the battle, it would look to the player like it's just a typical recruit option. There would need to be a check that makes the invite automatically fail if the clan is full but that check should be there either way imho.
3
Huh. I always wanted manual sorting but it never comes up in conversation. Very nice.

Unrelated: I am personally against the idea of having an individual inventory for each unit. The game has plenty of micromanaging already.
4
Combos and totemas were too broken anyway. There's probably a better way to implement totemas and combos can be replaced with movement abilities or a second passive ability slot. The only thing that I'll miss about the combos is the really cool animation.
5
Do you have the address? I may not be hacking the game actively but I'd be interesting in adding that to the ROM map on the modding wiki.

EDIT. Never mind I see you've been all over the wiki already lol.
6
FFTA/FFTA2 Hacking / Re: FFTA2 Thematic Mod
August 16, 2018, 07:04:49 pm
Ante and Post probably won't be OP at all. The player will generally want to limit their target selection to a unit very close or very far away from their next turn. This limitation passively balances the skill.
7
FFTA/FFTA2 Hacking / Re: FFTA2 Thematic Mod
August 16, 2018, 01:00:15 am
The use of Primed on magic units is a new one. The spell names also remind me of Harry Potter which is fun. But stat manipulation is pretty weak already, so I don't think I'd be willing to take damage for inverted -break skills.
8
The only overlap issue I can really see is the shoes vs the abilities. But that's as easy as removing the shoes or setting a priority check. I'm just excited to see new ability options. FFTA's short list of passives and reactions has been totally eclipsed by newer TRPGs at this point. Which makes sense logically but still sucks since I love the unique feel of these games.
9
@dck; Well damn. I'm glad you told me that before I got back into FFTA lol.

@Leonarth; I noticed the features you're working on seem to be thematically linked to porting FFT's mechanics forward. A version of FFTA that borrows more from its famous roots might be interesting.

EDIT. Actually I just realized the gria is obviously new. This could ultimately lead to a version with the best elements of all three games. The TRPG of my wet dreams is getting so close to being a reality. :p
10
Three? Four effects per ability. And instead of gambling abilities, why not look at an ability like Bad Breath? It actually has more than four effects. It only has "one" effect in the structure because each value essentially points to the ID value of a subroutine.

EDIT. Well technically it points to a structure that eventually points to subroutines. Can you tell I'm a little rusty? Haven't reviewed my notes in years. :p

The only use I ever found for effects like Descent or Friend was to effectively shove all of the Gadgeteer's crap skills into one big gamble skill lol.
11
On the note of movement abilities: I seem to remember the boots having "abilities" assigned to them that are unlearnable and hidden. Those might actually be fully coded movement abilities that were already buried in the ROM. I never looked into it though.
12
Changing the loading routine is a bold fix. I like it. There was a time when I toyed with the idea of removing races and race-based mechanics. Which of course would mandate all human sprites.

But yeah the awkward formats were...blech. I've had limited free time so I just gave up on that idea at the time. :p
13
In addition to the bottleneck, I also like how the grassy plains terrain can transition into a section without vegetation. Too many maps in vanilla are like, "Um...haven't I been here before?"

Any progress in map editing is huge because there are very few maps in FFTA that offer any strategic challenges.
14
Looks cool! On the topic of height maps, Advance Map faced a similar problem. Pokemon games have tiles with assigned values to mean things like surfable, not passable, etc. The program therefore has a separate tab just for editing those values, which in this case would be height, in which the tiles are displayed as a visual aid for the modder.

Of course I know that making something like that for an isometric game offers some more challenges but...closest thing that came to mind. Good luck!
15
The damage modifiers for support abilities are handled in-formula iirc. You won't find a table of them, and would actually need to study the assembly itself, most likely near where the accuracy formula was.
16
Iirc that limitation was on purpose because that's where the structure ends unless you manually repoint it.
17
FFTA/FFTA2 Hacking / Re: Animation pointers
July 09, 2016, 04:20:24 am
Probably? I first tried thinking of it the way moves are programmed in pokemon (set background a, execute animation d, summon particles c, etc) but the animation data contained here seems to have more nuances than just summoning generic pieces of animation.

When I replaced some segments of Cure with segments from Fire, I noticed a behavior indicating that these structures might even share some responsibility for GENERATING the animations, rather than just calling them. The particle effects I produced purely by accident didn't readily look like anything in the game.

So my assumption, as an example, is that it calls a baseline effect (particle, background, etc) and then some of the other values might actually correspond to elements of the effect (size, shape, etc). But this is very, very loose conjecture. It would be super hard to actually break down this data if it operates similarly to my theory. :(
18
Huh. Well that's awkward.

EDIT. So...if DA is walk on water, DC is ignore elevation, and DD is teleport...what is DB?
19
It would probably have something to do with that gap. The game frequently reads 00 as "end of list." But without more details all I can say is fill the gap and play with the start/end values.
20
Aha! That's clever. It never occurred to me that gadget formula without AoE is ultimately just a 50/50 hit or miss either way. I always got hung up on the friend or foe aspect of the formula.