Jump to content

Kelandon

Global Moderator
  • Posts

    10,261
  • Joined

  • Last visited

Everything posted by Kelandon

  1. Lost Souls! But no AI. Alas.
  2. And finally, at the end of Chapter 2, I finally get to write something that I've been foreshadowing since the end of the Prologue!
  3. Glad you're excited! I'm having a lot of fun designing again. I hope this thing ever gets finished so that people can see it. ------------------------------- More generally on the topic, I've recently started a new job, and it's slowing down my designing a fair bit. I'm sitting at the end of Chapter 2, and I more or less know what has to happen next, but I just haven't had the time to implement it.
  4. Only moderators, apparently? I'll dig into this and see if I can fix it. EDIT: I think I fixed it. Can a non-moderator try it and see if you can download the files now?
  5. That's... odd. That link works just fine for me. Either way, here's the relevant post:
  6. What problem are you having? As far as I can tell, the links work for me.
  7. Moved because it's about one of the games, not a general topic. Is that number correct? Day 1200? That's an awfully long time, if so.
  8. Dex was so broken in Avadon 1 that I thought it was easier to make almost everyone primarily Dex-based (except the Sorcerer). I tried the Shaman both ways, and I had an easier time with the Dex-based version than the Int-based version.
  9. AAHHH I'VE BEEN WAITING THIRTEEN YEARS TO WRITE THAT SCENE! I'm about three-quarters of the way through the main plot in Chapter 2. Things are starting to heat up. All the major pieces are on the board now, and it's just a matter of playing the game. Just the idea that I might be getting to Chapter 3 soon(-ish, probably in a few weeks depending on how much testing I want to do now) is kind of blowing my mind. It didn't seem like it would ever happen.
  10. I'm not sure about this view (or any of the last several) because it seems rather busy. The part that I'd be looking at, almost all the time, is the tiny little bit in the upper-middle (the main view). But that's, what, 10% of the screen area? So there's all this other stuff around, drawing focus, while I'm concentrating on this tiny little part. In the original, the main view was close to half the screen area, but it looks to me like you've blown up the size of everything else and added the automap to the screen while leaving the main view at its original size. I don't think that works. I like what you're trying to do here, but I don't think you have it yet.
  11. More miscellaneous design on Chapter 2, both main quests and side quests. I'm 37 towns in (with probably six more to go in Chapter 2, three of which I might not design until later because they're associated with a side quest). They're not completely done; a few are missing substantial dialogue and a few are missing substantial combat. (And one or two are missing fairly major scripting that will drive the plot forward.) A lot more have everything, but their combat hasn't been properly balanced; one of the things that I'm doing now is just putting together the concept of the fight (the monster types, the scripts) and not worrying overly much about balance until I come back and alpha test. At that point, I spend hours upon hours working out the level of difficulty and solution method(s) that I want for each combat, but it's easier to deal with that when I test than to try to work on it too much now. Screenshots were suggested, so here's a screenshot of an entrance to a very early town (at the end of the Prologue.) One thing that it illustrates is the hugeness of the design; when I compare my towns to Jeff's in the First Avernum Trilogy, the biggest difference is how much larger every element of mine is. The buildings are bigger, the streets are bigger, the rooms are bigger, everything is bigger. I think it looks cool, but I'm designing in an expanded view in the 3D Editor; I hope it has the same impact in the narrower view in the game. (It's hard for me to tell when I test because I know what everything looks like in the larger view.) The other thing it illustrates is that, um, I may be going a little crazy with heights. There are a lot of tall cliffs in Homeland.
  12. I think that at one point, in one of my crazier moments, I used two SDFs to function as a two-digit base-256 number, just as you're describing. And yes, it works exactly the way you're suggesting.
  13. If I remember correctly, it's 255 (i.e., there are 2^8 possibilities, from 0 to 255).
  14. Yes, that should be fine. Yes, you can erase a character from within its own script. You don't have to follow it with an end(). This is maybe just me being overly cautious, but I never use ME; I always use my_number(). ME works in some calls and not others, but my_number() always works. So I don't know if erase_char(ME) actually works.
  15. I'm doing something a little unusual to fix the summoning classes: I'm making it so that no normal monsters are summonable. Instead, I've created a set of 14 special monsters that are nothing but summons; they won't appear anywhere else in the scenario. There is a pair associated with each summoning class from 0 to 6 (because you can't get a summoning spell higher than Arcane Summon L3 in the scenario, and Arcane Summon L3 summons class 6). This does a couple good things. First, it makes the summoning much easier to balance; I can edit the monsters that get summoned without worrying about effects on placed monsters. Second, it makes summoning a lot more deterministic and a lot less probabilistic; by default, each summoning class has at least 4-5 monsters, and some have as many as 14, so what gets summoned is largely a matter of chance. Here, you will always get one of two things, so the spells are a lot more dependable. For now — and I'll have to test this a bit to see what I think of it — I'm beefing up almost every summoning class and regularizing the progression. The following is the average level for each summoning class by default, and the actual level of each of the monsters summonable in the class in Homeland: Class #: average default level -> actual level in Homeland Class 0: 2.5 -> 3 Class 1: 3.25 -> 7 Class 2: 5.9 -> 12 Class 3: 8.4 -> 18 Class 4: 16.5 -> 23 Class 5: 21.2 -> 29 Class 6: 27.4 -> 36 Call Beast L1, which summons class 0, will be about the same, but almost everything else will be stronger, some much stronger (particularly class 3 and above). Also, at least one monster in the class is a spellcaster starting at class 4. This means I have to be fairly careful about which monsters have access to Arcane Summon; Arcane Summon L2 is much stronger than Summon Aid L2, because the latter summons level 18 monsters who are not spellcasters and the former summons level 29 monsters who are. At the same time, the combat slowdown does not apply to summons; while almost everything else has at least 50% immunity to every type of damage, summons have no immunity to anything. So the summons are relatively strong, but if a monster summons against you, you should be able to clear the summons relatively quickly because you do twice as much damage to them as to anything else. Also, summons are all "beast" species (regardless of what they are, such as a demon or vampire) so that they are not vulnerable to Anatomy, but they are vulnerable to everything else (except Repel Spirit), and they won't pick up or use items. (And they've been stripped of all of their default items.) I'll add a message explaining some of this somewhere in-game, since it's such a massive change. It's also possible that this will make combats horrifically broken and I will have to rebalance all of this. But, again, because summons are separate from everything else, it should be relatively straightforward to rebalance summons. Part of the reason that balance was sort of sticky in Bahssikava and Exodus — once something worked a particular way, I generally didn't change it dramatically — was that it was very hard to change things. Reworking special spells required going through dozens of states. Editing monsters affected not just one fight, but many, and often in many different places, so I was hesitant to change things because any change was likely to have many unanticipated effects. I'm trying very, very hard to make that not so in Homeland.
  16. I've always dealt with this using flags: increment a flag in each character's DEAD_STATE, and if you know that there are, say, 6 characters that need to die before something happens, then make the thing happen once the flag reaches 6. I think you can also do this the way you're intending, but you have to be a little bit careful. Crucially, a creature is still alive when its DEAD_STATE runs; it doesn't die until the script finishes. Thus, if you want to do something in the last creature's DEAD_STATE, you should do it when the number of creatures in the group reaches one, not zero. I just tried this out in my testing scenario — a scenario that consists of basically nothing except whatever it is that I'm trying to test (here, a town with four hostile Giant Rats with a script that prints the number of creatures in the group in each character's DEAD_STATE) — and it appears that dead creatures don't count as being a part of the group. So this does work without having to remove monsters manually.
  17. Yes, and sort of. I was using a variable called next_state to determine the state to return to, but then it turned out that I had too many variables. Each state has to pass so much information to the next state that I needed over 20 variables, and the scenario script apparently can handle only 10, so I had to switch a bunch of them to flags. I'm trying to use lots of comments so it's not as much of disaster to read, but it's still not ideal.
  18. Mostly town and core quest design in Chapter 2 for the past couple of weeks. I'm at 33 towns, and it looks as though I will have about 43 by the end of Chapter 2. The Prologue has 9, and Chapter 1 has 18, and I think Chapter 2 will have 16 (give or take one or two). I also went back into the special abilities/spells to add one more feature (a special ability that displays information on the special spells/abilities — previously you had to try to use something to get info on it, which is still possible) and clean up the bugs that I discovered in that excursion. I've been writing comments to track the structure of the system as I write because I've been working on it for a day at a time and then setting it aside for several weeks, so I forget everything in between and have to re-read the comments to figure it out. For your amusement, here's the current introduction:
  19. Incidentally, I was wrong. Emerald Mountain is also in the Echoes setting. I had this vague memory that it was, but I couldn't remember exactly how, and I just found it (and you just encountered it in the last episode): the log book. The references there to importing stuff from Krizsan to an imperial research facility mark it as very likely Echoes-based as well. As with the others, I don't know that it makes much of a difference, but it is there. As I've mentioned, Emerald Mountain was my favorite early TM scenario. It was probably less of an influence on me than Canopy was — Exodus was a direct response to Canopy — but I think a lot of my expectations as a player when I was testing Bahssikava were set by Emerald Mountain. The combats are on the harder side, and I liked that, so I made the combats in Bahs also on the harder side. (Although, seriously, in that last one, all you have to do is enter combat mode, bless and haste, and heal at appropriate moments. It's really not as hard as you made it out to be.)
  20. I mean, I assume Sheepshaver will work. It's just a pain to set up, and setting up some other kind of emulation is probably easier. I'll try it myself at some point and see what happens. Edit: But, more generally, my point is to use original BoE, not one of these other things, and just emulate the environment that you need. And, to be clear, the reason that it would work is that you'd be using a (relatively) bug-free version of BoE rather than a bugged pre-release version of some kind of reworked BoE.
  21. Can you maybe just run original BoE in Sheepshaver? If the current version isn't really stable or functional, emulation seems like another option.
  22. I just checked CSR, and apparently Lazarus felt that the ending was one of the high points. Nik also liked it, but almost everyone else didn't. Grimm said that TM admitted that he ended it there because he just didn't feel like writing more, which I don't remember but which may be true. I was curious about something else, so I checked if my review is up there, and it is. I guess I slammed Canopy pretty hard when it came out. My review — which is listed as "from an unknown reviewer" but literally refers to being the person who designed Bahssikava — is not especially positive. Be that as it may, Canopy was a huge influence on Exodus, as I mentioned above.
×
×
  • Create New...