Contact info for Melindil

Andrei Nistor

First time out of the vault
Hello,

This might be a but unorthodox but does anyone know what happened to Melindil? I'm trying to create a fallout/fallout tactics and his insights on the inner workings of fallout tactics would be of great help for me. I hope he is well and any info on how to get a hold of him would be very appreciated.

Thanks!
 
It's actually pretty funny as I wrote a quest in my mod to "Find the missing Melindil", a while before he actually went missing for real :P Unfortunately, I wrote him several private messages in this forum a couple of years ago, and this is the last connected date when checking his online profile : Nov 7, 2021. I assume the chance of getting to him are slim :( Sad, expanding his project and solving some problems there could be an immense asset for Tactics modding.
 
I was afraid of that. I figured if anyone knew what happened to him it would be you. I hope he's well, wherever he may be.
 
Wow, kind of funny timing to come back to the forum after a long time and see this as the most recent message. Despite rumors to the contrary, I am, in fact, still alive. :)

I just haven't had really any free time at all, for a long while, to put into side projects - between focusing on a new position at my employer, to moving into a new home, to other family issues (nothing bad), I've been completely swamped.

The good news is, I still don't consider FTSE as a dead project. There's a lot that I still want to get done on it. (I think I said before that I wouldn't ever consider it "finished" until it at least had full support for character dialogue trees, etc.) And my interest is still very much there. But, at least in the short to medium term, my free time situation isn't likely to change.

I'm trying to create a fallout/fallout tactics and his insights on the inner workings of fallout tactics would be of great help for me. I hope he is well and any info on how to get a hold of him would be very appreciated.

I'd be happy to answer what I can here. I don't currently have access to my notes or my Ghidra project file for FoT - my main PC is currently up on a shelf while house stuff is being done, but when that's finished I can re-review those to refresh my memory on things. Most of my initial focus was on entity-to-entity interactions (combat, skills, inventory, etc.), so I'll probably have better info there than on other areas (trigger actions, UI/graphical stuff, etc.).

Yep, same... Wish nothing bad happened to him and that he is well...

Wow. I feel kind of embarrassed if I made everyone worry. But thank you for the well wishes. I'll try to be more active to at least watch the forum, even if I'm stalled on progress for now.

Once I think I'm close to having time to restart things, I'll reread the forum a bit to try to prioritize where to pick up from. Bug fixes will probably be first, followed by anything that I have notes for but no hooks yet. I think my last work was on reversing the code for all of the active skills - Sneak, Steal, First Aid / Doctor, etc., so having the ability to use a hook to affect those outcomes would probably be helpful. Oh, and also trying to finish up analysis on the Entity class virtual function table - once I know what all of those functions are, I can make them callable from Lua. That should make things like triggering damage, healing, maybe even sprite refresh on other attribute changes, much easier to do.
 
Hello Melindil!

Very happy to hear you are well. I checked your github recently and was amazed to see commits :) At first I was sure it was damn dependabot but I was glad to be wrong.

I know how it is to not have free time so I will try not to pester you too much.

My current main questions are about attacks. For example, when doing a single shot attack (straight spread arc) what happens when the target roll misses, how big is the "cone" and how is an alternate target selected. I have adapted the logic from f2 and seems to work decently but would love to have it closer to the real thing.

Next one is the burst attack, again adapted from f2, I currently have it spreading the bullets on 3 lanes (left, center, right), but all these three lanes intersect so that they all contain the actual target. The center lane bullets are first rolled for the mian target and what misses are rolled for other potential targets in the lane. Left and right start rolling from the closest to the furthest and may at some point get a chance to roll on the actual target. There are some to hit penalties for non-actual target rolls. Again seems to work decently but I have heard that the burst calculation in FoT is very different (and buggy) would love to learn more about it.

The cone spread arc is a mistery to me, used by shotguns from what I could tell. I haven't implemented this yet. I'm currently thinking about spreading your initial rounds into multiple sub rounds (pellets) and use the same burst logic. Again would love to know how it actually works in game.

The spray and radial I could not really find used anywhere but it would be interesting to have some insights on them.

And the none spread arc is strange as it is used for things like the rocket launcher, I would have expected that to be straight. It is also used for the flamer which is again weird, don't exactly know how that is actually calculated behind the scenes. I remember in f2 it was something like a burst attack spread but it would try to attack each target exactly one time.

I have also implemented free fire (ctrl + click on ground). For fire arms it's relatively straight forward, I just use the single shot or burst functions with a non target tile as the target and then the lanes do their thing. I'm more curios about projectile weapons in this case like grenades, rocket launcher, spear etc - what is the spread calculation, how much more left does it go if your roll misses, how much further etc. - I have some rough implmementation that also takes into account how bad your roll was compared to the chance to hit.

There's no rush to get an answer to any of these.
 
Back
Top