Jump to content

DanielShougun

Members
  • Posts

    36
  • Joined

  • Last visited

Nexus Mods Profile

About DanielShougun

Profile Fields

  • Country
    United States
  • Currently Playing
    Oblivion, WoW, Tera, Diablo 3
  • Favourite Game
    Oblivion, NWN1&2, Fallout3, KOTOR, Fable, Halo...

DanielShougun's Achievements

Contributor

Contributor (5/14)

  • First Post
  • Collaborator Rare
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. I went through most of my mods on FO3EDIT and tried to make them "more compatible" with eachother.
  2. Thanks for the reply. I sure hope it's not a corrupted save. I guess it's easy enough to test out though. I'll give it a shot.
  3. I don't even know how to word this problem, so I can't do a forum search. I having an issue where in a few spicific cells every non-static item, including npc and pc, is stuck at one point, unable to move or interact. I'm certain I know the mod causing the problem and I belive it was my own doing. Instead if re-installing the mod I'd like to learn what is going on and, perhaps, an idea how to correct it. I feel fairly confident with FO3EDIT but not so much with GECK. I don't need my hand held, though. Just point me in the right direction. Here is a picture Thanks :thumbsup:
  4. So occasionally the CS throws in a water height bug in random interior cells set at -2147483648.000000. Someone mentioned to me that I ought to go through my mods and fix them cause they may cause CTD. My question is does that little bug really pose a threat?
  5. I'm surprised that no one has replied to this yet. I'm not totally sure about installing order but I think you'd want to install the MMM and FWE files first then everything else after that. As for load order, I can point you to a great tool that many use in the modding community called BOSS. This tool can order them for you, or, if you like, show you how it would order things but let you decide. It can be found here or here. Hope this helps a little :thumbsup:
  6. Just as the topic says: My screen flickers back and forth from a previous frame to the current frame every time my PC gets hit. This occurs even when I have no mods turned on and I'm only running Vanilla. I thought it might be a hit shader issue so I replaced it with Timeslip's OnHit Shader Replacer but that didn't solve the issue. I wonder if it an ini bug. Any ideas?
  7. Thank you for all the hard work you guys do.
  8. I've been using TES4Edit to smooth out conflicts in my mods and have come across something that I'm unsure about. If an item has several scripts affecting it from several different mods do all the scripts work or just the one from the mod lowest on the load order?
  9. Try using BOSS if you think its a load order issue. if not, Did you recently add new mods? And it worked before adding them? or Are you starting a new character? or It could be any one of the mods you have. Try narrowing down which it might be. Uncheck half and then try the game. If it loads, then your problem is in the other half of your mods. Just keep halfing it down until you find the one that's causing you issues.
  10. I realized that I most likely posted my previous post in the wrong place, so I'm trying here instead. I need help with a little scripting. Problem: I use both Abo's Backwards Running Updated (http://oblivion.nexu....com/mods/10901) and Beni's Pretty Woman - animation replacer (http://oblivion.nexu...com/mods/32572/). The issue is that I like the backwards run animation and would still like to see it occasionally. Idea for a solution: I'd like to edit the script in Abo's Backwards Running Updated so it only kicks in when a weapon out/unsheathed. While I can read a script and understand the logic in it enough to edit it to my liking, I have no skills in adding lines or in the actual scripting language. This is where I need help. I think it has something to do with a "IsWeaponOut" function, but I don't understand how to implement it. If there are concerns about permission, Abo wrote, "You are allowed to modify my files and release bug fixes or improve on features so long as you credit me as the original creator." The following is the actual script from the mod: ----------------------------------------------------------------------------------------------------------------------------------------------- Scriptname aaNoRunBackwards ; Running is toggled off by either disabling (runState == 1) or holding (runState == 2) ; the run key. When running has been toggeled off it takes one frame to take effect. ; After togging running off, debounce is set to give one frame for it to take effect. ; This can also be done less reliably by increasing fQuestDelayTime to longer ; than one frame. short initScript short runKey short backKey short runState short debounce float fQuestDelayTime float backRunTime float timePassed Begin GameMode ; Initialise settings for v2 if (initScript != 2) set fQuestDelayTime to 0.01 set runKey to GetControl 10 ; Run Key Code set backKey to GetControl 1 ; Back Key Code set initScript to 2 endif set timePassed to GetSecondsPassed if IsKeyPressed2 backKey if (backRunTime < 0.33) ; accumulate backwards running time set backRunTime to backRunTime + timePassed elseif debounce ; last frame we toggled run, give it a frame to take effect. set debounce to 0 elseif player.IsRunning ; backwards running time limit reached, force walk if IsKeyPressed2 runKey ; running because run key pressed so disable it. ReleaseKey runKey DisableKey runKey set runState to 1 else ; running because run key not pressed, so hold it. EnableKey runKey HoldKey runKey set runState to 2 endif ; set debounce to allow next fame for toggle to take effect. set debounce to 1 endif else ; decrement backwards running time to zero if (backRunTime > 0.0) set backRunTime to (backRunTime > timePassed) * (backRunTime - timePassed) endif ; toggle running back if it was toggled if runState == 1 EnableKey runKey set runState to 0 elseif runState == 2 ReleaseKey runKey set runState to 0 endif endif End ---------------------------------------------------------------------------------------------------------------------------------------------- It ought to be fairly simple, but I just don't understand how to write scripts. A hint or a simple line to add in would help tremendously. Thank you for your time
  11. This is either a request to make the mod or a request for help editing a current one. Problem: I use both Abo's Backwards Running Updated (http://oblivion.nexusmods.com/mods/10901) and Beni's Pretty Woman - animation replacer (http://oblivion.nexusmods.com/mods/32572). The problem is that I like the backwards run animation and would still like to see it occasionally. Idea for a solution: I'd like to edit the script in Abo's Backwards Running Updated so it only kicks in when a weapon or fists are out/unsheathed. While I can read a script and understand the logic in it enough to edit it to my liking, I have no skills in adding lines or in the actual scripting language. This is where I need help or a mod request (which ever some nice person is willing to do). Abo gives permission as long as he's credited. The following is the actual script from the mod: ----------------------------------------------------------------------------------------------------------------------------------------------- Scriptname aaNoRunBackwards ; Running is toggled off by either disabling (runState == 1) or holding (runState == 2) ; the run key. When running has been toggeled off it takes one frame to take effect. ; After togging running off, debounce is set to give one frame for it to take effect. ; This can also be done less reliably by increasing fQuestDelayTime to longer ; than one frame. short initScript short runKey short backKey short runState short debounce float fQuestDelayTime float backRunTime float timePassed Begin GameMode ; Initialise settings for v2 if (initScript != 2) set fQuestDelayTime to 0.01 set runKey to GetControl 10 ; Run Key Code set backKey to GetControl 1 ; Back Key Code set initScript to 2 endif set timePassed to GetSecondsPassed if IsKeyPressed2 backKey if (backRunTime < 0.33) ; accumulate backwards running time set backRunTime to backRunTime + timePassed elseif debounce ; last frame we toggled run, give it a frame to take effect. set debounce to 0 elseif player.IsRunning ; backwards running time limit reached, force walk if IsKeyPressed2 runKey ; running because run key pressed so disable it. ReleaseKey runKey DisableKey runKey set runState to 1 else ; running because run key not pressed, so hold it. EnableKey runKey HoldKey runKey set runState to 2 endif ; set debounce to allow next fame for toggle to take effect. set debounce to 1 endif else ; decrement backwards running time to zero if (backRunTime > 0.0) set backRunTime to (backRunTime > timePassed) * (backRunTime - timePassed) endif ; toggle running back if it was toggled if runState == 1 EnableKey runKey set runState to 0 elseif runState == 2 ReleaseKey runKey set runState to 0 endif endif End ---------------------------------------------------------------------------------------------------------------------------------------------- It ought to be fairly simple, but I just don't understand how to write scripts... Thank you for your time
×
×
  • Create New...