Jump to content

BainIhrno

Moderator
  • Posts

    1,369
  • Joined

  • Last visited

Everything posted by BainIhrno

  1. Okay, I'm having another problem with this. I've tested 'ability 3' and it isn't working properly. For some reason, however, the game doesn't actually call state 111 when the ability is used. It just gives me a special item. EDIT: Nevermind, the scenario script doesn't go past 100.
  2. I figured it out - I apparently had two beginstate 15's. Thanks anyway.
  3. For some reason, this node doesn't show up in dialogue. In other words, the question doesn't show up when it should. A previous node did have "nextstate = 13" so I know that isn't the problem. Can someone tell me what's going on? begintalknode 15; state = 13; personality = 1; nextstate = 14; condition = 1; question = "What are your specials?"; text1 = "_Why, my specials include varieties of powder! Wouldn't you like to see?_"; text3 = "_Why, my specials include magic shields! Wouldn't you like to see?_"; text5 = "_Why, my specials include Vahantai weapons! Wouldn't you like to see?_"; code = clear_strings(); if (get_flag(54,0) == 1) || get_flag(27,0) == 1) add_string(3); else if (get_flag(27,2 < 1) add_string(5); else add_string(1); break;
  4. Okay, another question. In the scenario, a fortress is built at a later point in the scenario. I've noticed, however, that even when the town is hidden, the party still can't walk on the spaces even though they are open. Is there any way around this, short of just putting trees on all the spaces the fort occupies (where I could use the excuse, "The Sliths cut the trees down to build it"). Thanks.
  5. Thanks. As long as I'm on this subject, can SDFs have a value below 0 in BoA? The current configuration has two SDFs for reputation that supplement one another, one keeps track of good deeds and one of bad deeds. Is it possible, in other words, to do with one SDF?
  6. Well, I guess basically I'm going with the BoA stats, but for example: In BoE, the sword Kothas-Onar did 35+8 damage. Since creatures will have higher HP in BoA, I'm curious how I would design this item here.
  7. I've started alpha-testing the scenario now, and this is the configuration I used to check the crime level beginstate START_STATE; if (get_crime_level(ME) > 0 && < 5) set_state_continue(53); if (get_crime_level(ME) >= 5) set_state_continue(54); State 53 will decrease the party's reputation via SDF by 1. State 54 will kill the party. However, right now the scenario is calling state 53 on every turn in the town, and attacking the town doesn't call 54. What am I doing wrong?
  8. Unfortunately, those codes don't seem to be giving me enough information. Anyway, good news! I'm almost ready to start alpha-testing the port, after a few more adjustments are made. Once I can get something that resembles balanced combat and treasure, I should be ready.
  9. Thanks. Also, do the 'boom' calls play the sound of their fields automatically, or does that need to be programmed too? (For example, if I call a fire explosion, will the fire bolt sound play if I don't tell it to?)
  10. Out of curiosity, is there any way to allow a creature to do special damage to three random targets at once?
  11. Sounds cool. I'm using a Mac, though, so I'm not sure how I could get the data arrays, though.
  12. For anyone interested -- I'm almost finished updating the town, outdoor, and dialogue scripts, and have a little more terrain work/height adjustments to do. This means that I'm getting close to a fully playable prototype. However, due to my limited knowledge of the BoA combat system and the potentiality for missed errors in such a large scenario, alpha-testing is going to take some time. In addition to picking up bugs, I may be spending quite a bit of time readjusting monsters/stats so that the combat, items, and spells are balanced. In other words, I'm getting close to the point where I can alpha test it, but it's still going to be some time before I can call for beta testers.
  13. It's by Tarl Kudrick (author of Tatterdemalion, Islands of the Wheel). You'll see a link to it here: http://www.spiderwebsoftware.com/blades/scen_workshop.html
  14. Thanks, new question. I've been reading the script for Exodus trying to figure out how to make a custom ability do damage to an NPC. I'm hoping to put an ability in allowing the party to do a small amount of unblockable damage. Thanks.
  15. I have another question - will the init_special_abil call work outside of the scenario script? In other words, can you have custom abilities in your scenario that you don't start out with?
  16. For graphics, I still need the grass-on-fire and to realign the skull and mushrooms.
  17. Congratulations on a scenario! Just one word of advice, I might change the title - it's a bit generic. Besides that, I look forward to playing it, and hope you'll play my port of BoE's "Of Good and Evil" when I finish working on it. Congratulations.
  18. Okay, it's about 10PM and we're short about 3 players. If anyone else wants to play, this is your chance. EDIT: We weren't able to get enough players this evening, I'll post some additional times. http://whenisgood.net/djki473 - Updated with new times.
  19. The Chatroom is set up. Once anyone's ready, log onto AIM and contact me (bihrno423) and I'll get you in.
  20. Sorry for the double post, but it looks like I'll go ahead with this tomorrow. It looks like we have six to seven confirmed participants, if you'd like to get in, let me know.
  21. It's on AIM - Feb 9th at 10PM.
  22. It looks like 10PM will be our time, but I still need Nightwatcher and Wander to confirm times. If Sarachim plays too, we'll have nine players. Anyone else is welcome as well!
  23. Thanks everyone. For stolen items, I may set up the coding to lower your reputation for doing so rather than ending the scenario, under further consideration (OG&E in BoE had a reputation system).
  24. In my translation of Of Good and Evil to Blades of Avernum, I'm programming the friendly towns to (1) end the scenario if you steal something (doesn't count as winning) and (2) kill you if you attack the town. I know that's probably not what some BoA players want to hear, but I feel when translating the plot over to BoA, being able to attack the friendly towns and the response only being the standard "town becomes hostile" wouldn't make sense in this storyline. So I have programmed this with the START_STATE command, but I'm worried that having the game check the crime level every turn will cause the game to slow down. So I guess my question is, does START_STATE slow the game down if used in certain ways?
×
×
  • Create New...