Jump to content

GamerRick

Supporter
  • Posts

    662
  • Joined

  • Last visited

Nexus Mods Profile

About GamerRick

Profile Fields

  • Country
    United States

Recent Profile Visitors

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

GamerRick's Achievements

Proficient

Proficient (10/14)

  • Dedicated Rare
  • First Post
  • Collaborator Rare
  • Posting Machine Rare
  • Conversation Starter

Recent Badges

4

Reputation

  1. You would need to add the book that teaches the spell, not the spell itself.
  2. You have to make the change in the Construction Set Extender.ini file (since the CSE won't save any settings changes you make to the ini file) (in Data\OBSE\Plugins ) [BGSEE::Plugins] PreventTimeStampChanges=1 SaveLoadedESPsAsMasters=1 <---- THIS ONE!!!!
  3. The ONLY other way to make an ESP a master of another is to esmify all of the ESPs that are to be used as masters first.
  4. My memory is vague on this, but I think you have to make the change in the Construction Set Extender.ini file (since the CSE won't save any settings changes you make to the ini file) (in Data\OBSE\Plugins ) [BGSEE::Plugins] PreventTimeStampChanges=1 SaveLoadedESPsAsMasters=1 <---- THIS ONE!!!!
  5. I am using an older version of OR and ENB. To use both, you need to set ENB to use the speed hack without messing with the graphics. Here are the first few lines in my enblocal.ini file: [PROXY] EnableProxyLibrary=false InitProxyFunctions=true ProxyLibrary=other_d3d9.dll [GLOBAL] UsePatchSpeedhackWithoutGraphics=true <------ This one is impoertant!! UseDefferedRendering=false IgnoreCreationKit=true
  6. OnRelease, eh. Sounds good. OnAttack looks like it would be good for what the OP is asking for. I wonder if OnRecoil and OnStagger would be better than what the mod I am using does.
  7. For detecting when the player is just swinging the sword, all I can think of is something I saw in the mod No Recoil or Stagger. A quest script that runs every frame, with this command in a GameMode block: if Player.IsAnimGroupPlaying recoil ; Is there an anim for swinging a sword? If so, it would require a bit more to get it to work right, but it's a place to start maybe.
  8. I have dealt with this issue many times now. You simply can't force this game to AI actors that are not in the same cell as the player and expect immediate results. The "No high level processing" flag is pretty much meaningless. Two examples of this are the merchants Rohssan of the IC (who generally open after 8:45 AM) and Falanu Hlaalu of Skingrad (who usually opens after 10:30 AM). There is not reason for either to not open at 8:00, except for the fact that the game will just leave them somewhere else until it magically decides to put them where they belong. To get around that, I put scripts on their front doors that does a MoveTo command to stick them in their shops, unlock the front door, and and then activate the door again so that I can go on in as if they had been open all along. The other most annoying NPC is the count of Skingrad. There is nothing that prevents him from showing up a lot sooner than he does, except that the game is again refusing to actually do the AI packages that would get him to come to the lobby until it magically decides to do so. I haven't dealt with this yet, since it is more complicated.
  9. Looking at the spell StandardSummonSkeletonApprentice, under effects is the one item "summon skeleton" and the duration is 40. You would need to set the duration here possibly longer than what you want to make sure the script runs its course. Looking at spell SELpSummonHaskill (where the duration is set to 5 seconds and it has a scripted effect), I see this: set timer to timer + ScriptEffectElapsedSeconds Maybe you should be using that instead of GetSecondsPassed. I am guessing at this based on what I am seeing in current spells. I am not an expert on this.
  10. That code looks like it forces the timer to go to the end when the summons dies. It does not determine how long the summons will live. The duration may be set in the spell.
  11. My understanding is that DXT5 is more loss-less than DXT1, which means that DXT5 should result in a larger file. However, once a file is saved in DXT1, you can't get the detail back by switching to DXT5. So, the decision has to be made before the image is saved in any compressed format. The same would apply to images saved in the JPEG format, which has selectable levels of compression. My success in manually downsizing images in Photoshop isn't better than what Optimizer Textures can do, and I have visually compared the results from OT and DDSOpt to conclude that the former produces images with better detail and contrast.
  12. For Oblivion, I use DXT1 for textures that don't have a transparency alpha channel, and DXT5 for those that do. I have heard that DXT1 can cause more detail loss because of the stronger compression, but have not verified this myself. Using DXT5 instead, even for textures without the alpha channel, won't hurt anything. I did this in FO3 following the advice of PixelHate, who knows more than me about these things. I am still playing on the computer I built in 2010. I am on the 3rd graphics card (which is the only thing that broke over the years). My latest one is an AMD 570 with 4GB vram. Going from a 1GB card to a 4GB card made a big difference in all of the Bethesda games.
  13. It does not work well on skin textures. Quite bad actually. I'm not sure what else you may be referring to. I use Photoshop CS2 and the last version of Nvidia's plugin that works with it. I usually use PS when it's one or a just a few texture(s) that need adjusting or when I am creating one myself. It works better than DDSOpt on most though.
  14. No. It is a program that can batch fix (or downsize) textures for you. I should have said 'The best program for fixing already existing textures'. I mostly use it to downsize textures that are way too big for the resolution I play at. But I can see in its output text when it is adding mipmaps to them, removing unneeded alpha channels, and saving it in another DXT format. To use it on one texture, put that texture in its own temporary directory and point the program to that directory.
×
×
  • Create New...