Jump to content

NellSpeed

Premium Member
  • Posts

    330
  • Joined

  • Last visited

Everything posted by NellSpeed

  1. I think I do best on my own, simply because my schedule often prevents me from modding for a week or two at a time. I work with another modder on occasion, but her schedule is as odd as mine, so we both run behind a lot. I, uh, still owe you a corrected beta of my esp for the mages' quest mod, David. And an email or two. Sorry!
  2. Oh. Oh, dear. Very sorry to hear that. Is there any hope for recovery?
  3. The backgrounds work well-- they're definitely an improvement over the blank background, which made the whole page look unfinished. The fixed-width layout fits perfectly on my netbook and my iPod, but the site does chug a bit while loading; so a mobile theme would be awesome. A mobile theme-- or an alternate color option-- might also be useful for users with visual impairments. People who can play the games just fine may have trouble reading the white text on a black background, or white on the orange, for that matter.
  4. Found this on Topless Robot: (YouTube link-- the video is work-safe, but the comments probably aren't. The gist of it is that gamers often don't play just to win-- we play for the experience, for the chance to step out of ourselves and into someone else, somewhere else. Plus fun graphics (looks like 256 colors to me) and a catchy tune! Your memories creep in with the edge of a smile You realize again what you lost for a while YOu're going to think back much less on how you saved the day Than on all the experience gained At the end of it all, gamers play what we play not for GAME OVER but rather for what we take away!
  5. Congratulations on your work! Very much looking forward to seeing the finished product.
  6. The script will keep firing as long as these two are true-- so until the player leaves the world and the stage changes, it just keeps going. You might try doing a setstage at the final line of NPC dialogue in the result script box, and see what happens.
  7. Well, there's a difference of course between the editor ID and the Ref, but if the script is generally working, it should be okay. What conditions are determining when the conversation begins? Do they all change after the conversation is initiated? (I have NO idea how to make recalls work-- never so much as tried it before, so I can't be of any help with that.)
  8. Hi, there. :) What do you mean "can't get him to stop"? Does he keep restarting the conversation? Or do you not get an option to close out the dialogue?
  9. Ooh, okay-- I obviously hadn't taken that into account; I'm still learning, myself-- and this gets added into my "things to remember" file. It doesn't hate you-- it just believes in tough love! :thumbsup:
  10. I'm going to keep linking to the CS wiki when I reply-- it can be such a pain to navigate, and I know there's stuff I'm leaving out, so I want to try & give you as much info as possible. if (getstage AACaiusQuest5 10) && (player.getinworldspace AADagothUrIntroWorld) sayto player, GREETING isn't doing what you think it is. I think you're trying to check if stage 10 has been reached and if the player is in AADagothUrIntroWorld? So try if (getstagedone AACaiusQuest5 10 == 1) && (player.getinworldspace AADagothUrIntroWorld == 1) sayto player, GREETING Getstage checks for the highest completed quest, and that's it-- you don't use a stage number with it. When you use most of these commands, you have to tell it if you're looking for a yes or no answer. Not using a == 0 or == 1 (in this case) will confuse the game engine, resulting in a crash. And you can just go with "end" instead of "end gamemode" -- which may be the other problem. We'll get to SayTo, etc in a bit. :)
  11. Welcome to the wonderful world of bug-testing! (And thank goodness for fg109.) :happy: This is when it helps to have everything planned out on paper (or in a text document) ahead of time. I personally have an awful time trying to remember whih So let's start with this-- if this is still your script: if (getstagedone AACaiusQuest4 30) && (isPCSleeping > 0) WakeUpPC setstage AACaiusQuest5 10 endif I would change getstagedone AACaiusQuest4 30 to getstagedone AACaiusQuest4 30 == 1 Right now, the game doesn't know what you're checking-- it knows the quest and the stage, but nothing else. That == 1 tells the game that the player needs to be sleeping. (And remember, every variable's starting value is 0, until or unless something changes it.) If that doesn't work, then take out the WakeUpPC line, and see if that does anything. And, of course, there's a big difference between "begin MenuMode" and "begin GameMode" and the multiple "begin On(fillintheblank)" options.
  12. See, you're getting the hang of it! :) Don't get discouraged, and you definitely DON'T look silly. You're not only talking about modding, you're actively trying to do it, and that's a lot more than most people try! A few things leap out at me: From the wiki: Example: GetInWorldspace ChorrolWorld Returns 1 if the actor is currently in one of the exterior cells of the specified worldspace. Always returns 0 if the actor is in an interior cell. So your script is only checking to see if the player is in that worldspace-- not actually sending him/her there; and of course, the answer is 0, or in this case, "no." You also might want to use "and" to link your two requirements: if (AACaiusQuest4 == 30) && (isPCsleeping == 1) -- I don't know if Oblivion will correctly run the script as you have it, or if it might only look at that first "if" and not the second. I still don't have a solid grasp on comparisons. Finally, I believe if AACaiusQuest4 == 30 should actually be if GetStageDone AACaiusQuest4 MS09 30 == 1. As it stands, it looks like you're checking for a variable, which of course you're not doing. (As always, I await someone with more know-how to correct my suggestions! :biggrin: )
  13. The thing about scripting is, it really does make logical sense-- it's just for those of us who don't have any scripting / coding / programming background, there's a pretty steep learning curve. If you get the basics down first, it gets even easier. Of course, given that no two users have all the same mods installed, and troubleshooting becomes a nightmare... but that's another set of problems, really. (When I went through my first round of scripting, my partner was playing through Jagged Alliance 2. Between his cursing and my cursing... well, let's just say it was kind of a noisy house that weekend.)
  14. Well... yeah, I should have clarified that my suggestion was NOT proper coding, but an example of the general structure. I'm really sorry about that! You might want to go back over variables, since this is something you really need to understand. Also, you should probably also go through comparisons and how they work. Again, you'll be using a LOT of this if you keep working on quests. See, you can't use "equals", for example-- see Skevitj's scripting above. And did I mention stocking up on headache treatments? :D You might try just using Skevitj's scripting, to see if and how it works (replacing the ;****Start new quest/stage and others result actions**** with... well, with what you want to have happen. EDIT: Or, okay, here's something I just did a fast test on. Please remember, I'm still learning, myself-- there's an even chance that I'm way off track. I tested it in my own game, and it seems to work. But I really hope someone who really knows what they're talking about comes in to help out. So with all my goofy commenting out, you have this:
  15. GameDaysPassed-- something I wish I'd thought to look for in my earliest modding days. I think you'd do something like this: - Declare the variable to start the second quest-- something like, StartCQ3 - Set StartCQ3 to GameDaysPassed - if StartCQ3 equals GameDaysPassed +3, then start AACaiusQuest3, or setstage AACaiusQuest3 stagenumberhere, whichever one will trigger the appropriate journal entry.
  16. I'll have to remember that in the future. I'd like to do a mage companion for general release, but all the standard combat styles seemed to keep reverting to "summon something and die." I appreciate the comedy value, but in terms of, you know, not-dying, it leaves a bit to be desired.
  17. I haven't found any way of working with a mage companion that doesn't end up in 1) me taking an arrow / fireball to the back, or 2) the mage getting killed because s/he's trying to get some distance to cast. Ah, well. That's what the essential flag is for!
  18. Very welcome. :) God knows how effective he'll be in combat-- I've found the mage AI to be a bit odd-- but you can always tweak that in the CS, as well.
  19. Here's the download link: http://nellspeed.finalgirl.us/q-alixen-npc.rar . I'll yank the link in about a week, but feel free to upload it to a site of your own, if you want; just credit me as the builder; and, of course, edit it as you please. He should be working reasonably well, but let me know if he does anything truly weird. You can find him in-- where else?-- the IC Arcane University Lobby. Have fun!
  20. http://nellspeed.finalgirl.us/TheMentor.jpgThe Mentor He has options to: arm / disarm when you do, let you access his inventory, heal himself, and refresh his ammo when he runs low. I've never had much luck with mages, so just in case, I gave him some goofily overpowered stuff, just for the fun of it. Still doing a bit of testing, but he's pretty close to done.
  21. Okay, basics are done. I'll do some testing and get back to you either later today, or mid-day tomorrow.
  22. If you take a look at Jo'Virr's description, that's the basic design I'll use for your character-- let's call him Llandele Seleth for now, a Telvanni mage who came to Cyrodiil almost accidentally, in the company of more experienced mages, and saw a lot of potential for advancement that he felt he might not be able to reach in his homeland. Ambitious, tempered with compassion, he's managed over the years to very quietly gain quite a few powerful (and similarly unobtrusive) allies. While he was raised to believe that slave-ownership is a Dunmer's right, living in a foreign land has taught him to believe otherwise. Maybe he has Argonian allies in the mage guilds? Maybe a certain Countess isn't as secure as he believes? * It's very, very simple scripting, but I'm working on refining it (in between half a dozen other projects) so that other players can just take the scripts, rename variables, references, etc as necessary, and have their own custom companion-- nowhere near as complex and flexible as CM, of course, but still (ideally) a solid base. * This is all just my rambling, of course-- it won't be reflected in the writing, which you can customize yourself in the CS, if you want to tinker with it.
  23. If you don't feel like using CM for this, and nobody else has the time, I can probably put something basic together over the weekend.
  24. I'll strongly recommend going over to TES Alliance and going through their tutorials-- cut & paste is a great way to start, but having a good understanding of variables, commands, and how to use them will save you so much frustration later on. Of course, modding is at least 90% frustration anyway, but.... :biggrin:
  25. Did you try using TES4Edit to find the conflicts? That's a pretty good way to see where the problem is and remove it, although it may take some time to fix things. Scripting is an amazing challenge... IMO it's partly because the more you do, the more you learn, and it gets tempting to go back and "fix" earlier scripts, which sometimes just causes more problems....
×
×
  • Create New...