Jump to content

dubiousintent

Premium Member
  • Posts

    8257
  • Joined

  • Last visited

Nexus Mods Profile

About dubiousintent

Profile Fields

  • Country
    United States
  • Currently Playing
    Fallout New Vegas

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

dubiousintent's Achievements

Grand Master

Grand Master (14/14)

  • First Post
  • Collaborator Rare
  • Posting Machine Rare
  • Conversation Starter
  • Week One Done

Recent Badges

0

Reputation

  1. Glad to hear you have gotten past this "stuttering" problem. As for subtitles: did you include the "forcesubtitles" flag parameter in the dialog; or (as you are using the "startconversation" function) set the "AlwaysShowActorSubtitles" option on each NPC actor? If it works, count your blessings and move on to the next problem. There is (almost) always more than one way to solve a problem. -Dubious-
  2. All the vanilla game "assets" are located in the "Fallout - ..." BSA files under the "Data" folder. You would need to extract that particular NIF from the BSA into the same "Data" folder path in order to place it into your mod. Use the BSArch (freeware) by zilav command line tool. -Dubious-
  3. And just what about your setup makes it different so the previous solutions don't work? Are you using ENB or another "post processor"? Do you have the problem without it? If so, start by looking over the 'Solutions to Post-Processor (ENB/SweetFX et. al.) problems' section of the wiki "Fallout NV Mod Conflict Troubleshooting" article. What are your game graphics settings for "water"? This is why you are supposed to start a new thread. Details matter and setups are seldom the same. "I got this problem" doesn't give us anything to work on. Please provide ALL the information requested in the wiki "How to ask for help" article. Don't forget to identify things that do not appear in the "load order", such as the version of Windows, if you are using a "Steam" or "GOG" and/or "regional language version" of the game (even if you are playing it in English); using the "FNV 4GB Patcher", "xNVSE" and it's related plugins, "New Vegas Tick Fix (NVTF)" and "New Vegas Heap Replacer (NVHR)"; replacements for textures (specifically their larger image sizes: 1024x1024, etc.), animations, or "bodies", etc.; and "post-processors" like ENB or SweetFX. It saves us playing "20 questions" and gets you a more specific answer more quickly. (The usual turn-around on post and reply in an older game forum is 24 hours.) Screenshots of the "load order" don't usually work so well because they tend to cut off or fail to display needed information and are hard to "piece together" into a complete and coherent picture. * See "How to markup images (etc) in forum posts and comments" article for how to use "Spoiler tags", etc.. "LOOT" already includes those tags in the "load order" it copies to your clipboard, so you can just paste it's list into your post. -Dubious-
  4. So far that supports my original theory that this is due to a timing conflict between the "idle" animation and the dialog. "... during dialogue either with the player or another NPC idles are being called for by both the speaker and the listener each time a new conversation item is spoken." - GECKWiki Some things to try: 1. Generate a lipsync file for at least one dialog and see how that affects the idle at that point. 2. Use "StartConversation" to initiate the dialog between two NPCs. 3. Determine if you need to choose between "PickIdle", "PlayIdle", "StopIdle", and "RefreshIdle" at various points depending upon your needs. "Topics" in the "Topics tab" are between the player and the NPC. "A conversation is a series of infos that are played between two actors [i.e. NPCs]. All random conversations use infos stored in topics on this tab." - GECKWiki. Note that the inter-NPC conversation "infos" are stored as "Topics" in the "Conversation tab". I am not aware of any problem with putting all your dialog in a single topics tab (bearing the above in mind), as long as you properly qualify each topic with conditional tests and constantly keep in mind that the list of ALL topics is processed from the top down and stops with the first topic for which all the conditions on that topic are "true". -Dubious-
  5. Your use of the word "stuttering" was fine. (In the computer business it is not confined to speech.) What I was pointing out is that animations have their own internal timing, as does the dialog when combined with the lipsynch files. Without the lipsynch for the dialog, the animation timing seems to be getting interrupted by the dialog, and vice versa. Do the animations shake when you do not have the dialog implemented? Try commenting out lines to see if they change anything related to the animations in order to narrow down the possible causes. Suggest you see the "TIP AI Package Basics", "TIP Making NPCs move aka AI Packages", and "TIP Using AI Packages" entries under the "Custom NPCs" section of the wiki "Getting started creating mods using GECK" article for your other NPC issues. -Dubious-
  6. Try changing the variable name to something else such as "WaitState". Some words are "reserved" by the engine and can't be used as variables but the compiler doesn't warn about them. This is one reason why it is a good idea to prefix your variables with characters that indicate the "type" such as "iWaitState". BTW: There is no difference between "Int" and "Short" type. They both return the same value. -Dubious-
  7. Sounds to me like a timing issue. Do you have "lip synch" files for your dialog? You have to have one of the correct length for each line of dialog for them to time properly. Are you testing in a "new game", or attempting to use an existing play-through? A "new game" is recommended for development, with minimal mods for stability only. AI packages can only run one at a time. The EVP command causes the engine to immediately rescan the list of packages for the first which passes all the conditional tests assigned, and stops scanning the list any further to use that one immediately. If you really think you are alternating between packages, see "TIP Block Types Multiple vs Single Frame processing" and the "TIP Debugging data to file" entry under the "Scripting" section of the wiki "Getting started creating mods using GECK" article. -Dubious-
  8. Please see the 'Solutions to Starting the game problems' section of the wiki "Fallout NV Mod Conflict Troubleshooting" article. Then use 'FNVEdit'. Load your entire "load order". Read and follow the 'Conflict Detection and Resolution' procedure in the 'Tome of xEdit' documentation. Finally, if none of that resolves the problem, please follow the 'Mod Conflict Isolation' section procedure. Strongly advise you disable ENB (except for Boost if you are using it) until you have a stable setup otherwise. "Post processor's" are just a complication you don't need when troubleshooting. * If you have more than one mod that makes any change to the same record or set of records in the vanilla game, then you really need to use a "Merge Patch File" with that collection of mods. Please see the 'Third Rule: The Rule of One' and 'Merge Patch File' sections of the wiki "FNV General Mod Use Advice" article. When in doubt, create a "Merge Patch" file for your overall "load order" anyway. If you add, remove, or change the sequence of plugins in your "load order", don't forget to rebuild the "merge patch" file again. -Dubious-
  9. Re: Stuttering or "micro-stutters". All visual stuttering or "frame rate" problems are caused by the video stream having to wait for the "art assets" required to render the display OR the game writing something to disk (such as a save game file or logging). Mostly these are due to the hard disk drive being orders of magnitude slower than VRAM, with System RAM (e.g. "ENBoost") and "solid state drives" (SSDs) being in-between. There are and will always be situations where the higher FPS will drop as you decide to head in a direction the game did not anticipate and "pre-load" into video memory. Keep in mind that this game was designed for older PC and XBox console systems, and it is now possible for your new "latest and greatest" gaming machine to be faster than it can handle. There are internal design choices that cannot be overcome. This is especially true if you are attempting to run at a "frame rate" higher than 60FPS which can introduce unanticipated problems. (If you haven't already, try locking your video card to 60FPS for FNV.) The "video pipeline" has always been prone to problems. The following are "mitigations" that have been found to help some people. The mod FNV Mod Limit Fix has revealed that the "140 plugin limit" existed was because the game was opening 3 file handles for each plugin. The game has a hard coded limit of 512 maximum handles that could be opened at once, AND IT NEVER LETS THEM GO until it closes. (Potentially this applies to ALL files it opens.) This fix simply bumps that up to 2048 to allow for more room for file handles. This obviously has a potential impact upon any file related issues and makes it worth a try for that reason alone. Please see the following entries under the 'Solutions to Performance problems' section in the wiki Fallout NV Mod Conflict Troubleshooting" guide if you haven't already. * 'Issue: "Full screen mode" exhibits CTDs and stutters or micro-stutters' * 'Issue: Lag or "micro stutters" even with "New Vegas Stutter Remover" installed' * 'Issue: Win10 Screen tearing in "Borderless Windowed Mode"' * 'Issue: CTD without warning, "Out of Memory error", or stops responding after the Main Menu' for other settings that can indirectly affect micro-stutter. * There are also some NVSR configuration suggestions under the 'Issue: Game in slow motion' and entries. (These will not help with the "Tick Fix" alternative mod, but the author of NVSR now has a suggested configuration for Win10 linked there.) * The 'Issue: What's with these Solid Green billboard signs in the distance (LOD)?' entry under the 'Solutions to Mesh (Red "!" icon) or Texture (solid color) problems' section can also help if your problems started after you installed VWD/LOD texture packages. * If you are using CASM or some similar "auto-save" mod to manage your save game files (recommended), try increasing the "time between saves" set in the "save frequency"; and reducing the number of occasions it saves to the minimum (e.g. disable most "Autosave Events" in CASM) and see how that impacts the game seeming to freeze temporarily. * If you have "NVSE logging" enabled (see the 'Checklist Item #4' entry in the wiki "Fallout NV Mod Conflict Troubleshooting" guide), disable it until actually needed. (Reading from or writing to disk for any reason is the slowest thing the game does.) The size of your image files also has an impact. Larger/higher resolution is not always "better". Please see the wiki "Display resolution versus Image Size" article. The 'Issue: What INI edits seem to be most beneficial to performance' entry of the wiki "Fallout NV Mod Conflict Troubleshooting" guide) may also be some help. However, the above mitigations are more likely to have a fundamental beneficial effect with or without any INI adjustments, so consider them as the last resort. As you can see, there are a number of things that can underlie your problem. If one of these doesn't fix it, I would be interested to hear about any eventual solution that does. And anyone reading your post will be interested to hear the solution that worked for you. -Dubious-
  10. See the Nukepedia article. Basically if the bullet hits outside of the min/max range value, the damage is modified. There is no mention of an affect upon accuracy. To affect that you need to adjust the "weapon spread" value. -Dubious-
  11. Please see the 'Vanilla Load Order' entry in the 'First Timer Advice' section; as well as the 'Towards Game Stability' and the 'Common Game Problems' sections of the wiki "FNV General Mod Use Advice" article. Also, please see the 'Solutions to Performance problems' section of the wiki "Fallout NV Mod Conflict Troubleshooting" article; in particular the 'Issue: CTD without warning, "Out of Memory error", or stops responding after the Main Menu' entry. In future, please provide ALL the information requested in the wiki "How to ask for help" article. Don't forget to identify things that do not appear in the "load order", such as the version of Windows, if you are using a "Steam" or "GOG" and/or "regional language version" of the game (even if you are playing it in English); using the "FNV 4GB Patcher", "xNVSE" and it's related plugins, "New Vegas Tick Fix (NVTF)" and "New Vegas Heap Replacer (NVHR)"; replacements for textures (specifically their larger image sizes: 1024x1024, etc.), animations, or "bodies", etc.; and "post-processors" like ENB or SweetFX. It saves us playing "20 questions" and gets you a more specific answer more quickly. (The usual turn-around on post and reply in an older game forum is 24 hours.) Screenshots of the "load order" don't usually work so well because they tend to cut off or fail to display needed information and are hard to "piece together" into a complete and coherent picture. * See "How to markup images (etc) in forum posts and comments" article for how to use "Spoiler tags", etc.. "LOOT" already includes those tags in the "load order" it copies to your clipboard, so you can just paste it's list into your post. -Dubious-
  12. Do you have a variable named "Waiting" associated with the reference "JVCKalevREF" (like the variable "HasBeenHired")? The error is saying you don't, regardless of what you otherwise think is there. Note references to specific lines in code often are just "approximately located at". Look at preceding lines for failure to complete matching parens or failing to close a block correctly. Variable names missing are more precise information. -Dubious-
  13. Did you toggle "ArchiveInvalidation" after installing your mod into your testing game? The "random reversions" sounds like the problem where a file exists in more than one BSA, which the game engine is not able to deal with intelligently and randomly grabs from one or the other. "ArchiveInvalidation" tells it to use the "loose file" version instead of any BSA version. -Dubious-
  14. First thing to try upon hitting any "data locked" condition is power rebooting your computer. Otherwise you have to determine which program has obtained the "lock" and how they implement it to clear it out properly. Rebooting should do that for you. Close out of all programs cleanly and use the "shutdown" signout option. Do NOT just hit the power button. A "power reboot" is sometimes called a "hard reboot" because you need to power off the computer, and wait at least 10-15 seconds before powering it on again. Note this not a "hibernation" mode reboot, which preserves the memory state of the system at the time it goes down. You need to clear that system memory out to get rid of the "lock". -Dubious-
  15. Bear in mind that by default FNV has an effective "plugin cap" around 140 (without the mod FNV Mod Limit Fix). Consequently most players have experience with only a limited number of mods, and if they go heavily in one direction (for instance "graphics") then they have to give up others. Which is (IMHO) why "endorsements to downloads" ratio is a more objective recommendation. Mods I've played and recommend: [https://www.nexusmods.com/newvegas/mods/53041 Factions Reloaded - <series>] A series of three expanded faction encounters by the same author (TheScout201): Raiders, Legion, Followers of the Apocalypse. [https://www.nexusmods.com/newvegas/mods/61939 Zion Trail] by Hwiccian is basically another DLC connecting Honest Hearts with the MojaveWasteland. [https://www.nexusmods.com/newvegas/mods/66160 The North Road Remastered] by th3overseer is another DLC quality mod extending into new but familiar and fully lore compatible territory. [https://www.nexusmods.com/newvegas/mods/48925 The Someguy Series] by someguy2000 includes the famous New Vegas Bounties series of connected mods. [https://www.nexusmods.com/newvegas/mods/64660 Mojave Raiders] by PushTheWinButton is an Overhaul of New Vegas's raider factions, balancing their loot and adding more of them to fight. [https://www.nexusmods.com/newvegas/mods/40980 WARZONES - now with ADJUSTABLE SPAWNS] by MyGoodEye adds epic battles, new cities, and new weapons throughout the Mojave Wasteland. -Dubious-
×
×
  • Create New...