Jump to content

Tharkun221

Premium Member
  • Posts

    11
  • Joined

  • Last visited

Nexus Mods Profile

About Tharkun221

Tharkun221's Achievements

Rookie

Rookie (2/14)

0

Reputation

  1. Hi, I've had the same issue in the past. Created new NPCs, added custom spells to their inventory and they (mostly) never used them. I don't know if it's whats you're looking for, but you can force them to use a spell with a script using the Cast command. I use a token with the Cast script that gets added to any actor that needs that ability.
  2. I too don't think the OnHit block will work the way you use it. Have you considered using OBSE's onhit event handler function? Once set it will trigger anytime an actor is hit. You can write your code in the function to determine who was hit and if the Auriel shield was equipped at the time. It's pretty straightforward to use: First create the event handler function, (make sure to set it as an object script): Scn aaNerevairineOnHitFunction ref target ref attacker ref Pref begin function { target, attacker } set Pref to PlayerRef If target != Pref ;exit early if it's not the player that was hit Return EndIf If target.GetEquipped aaKOTNRAurielsShield != 1 ;exit early if player doesn't have Auriels shield equipped. Return EndIf If (target.IsBlocking) && (BlockedTimes < 15) set BlockedTimes to BlockedTimes + 1 ;increment the BlockedTimes global variable EndIf end ;end of function Now register the function by using SetEventHandler, for example you could put this code in the GameMode block of your Quest script: If getgameloaded ;needs to be declared only once when the game is loaded ;set handlers seteventhandler "onhit" aaNerevairineOnHitFunction EndIf You don't need any script on the shield or player. This is just a rough outline, I didn't test the code and I may not have fully understood all the details of what you want to do so it may not do exactly what you want as is. Hope it helps you.
  3. I haven't tried it yet but maybe this mod for owning a shop: "ef's Ultimate Shopkeeper mod 2020"
  4. Are you crashing with all the mods disabled too? Apart from the mods in your load order, have you added any high res texture packs? Not sure if it will help in your case but it may be worth trying the mod "EngineBugFixes" It's easy to install/uninstall and prevents a lot of CTDs.
  5. Also, in addition to Bevilex's check out Oblivion Basic Modding Guide
  6. OSR has an .ini file. You can change the FPS limit from 30 to anything you like. You don't need to uninstall it to get a higher fps.
  7. If you've run the 4gb ram patcher on it you should be ok. If you still want to check you can download a PE file viewer like this one found here: http://wjradburn.com/software/ --download PEview, unzip it and place the .exe file anywhere convenient. --Double click PEview.exe to start it then use it to open Oblivion.exe --in the left pane navigate to Oblivion.exe-->IMAGE_NT_HEADERS-->IMAGE_FILE_HEADER --in the right pane look for IMAGE_FILE_LARGE_ADDRESS_AWARE If it's there you're patched.
  8. Have no idea. Just a shot in the dark, are you using OSR? Then read this: https://www.nexusmods.com/oblivion/mods/47439?tab=posts 23 August 2019, 3:03PMRight so I replaced the original sr_Oblivion_Stutter_Remover.ini with this one and now the game always crashes when fast travelling to a city .. that never happened with the original one. Any ideas?
  9. Hey Garashta, welcome back to Oblivion. Fellow "99%" modder here. Check out Bevilex' modlist on the nexus: https://www.nexusmods.com/oblivion/mods/47591 It's fairly up to date and has an active posts section. In addition to many of the graphics mods in Bevilex's list, here's a short list of a few of my favorite mods: *Wrye Bash for mod installation/management. Also use BOSS. *Maskar's Oblivion Overhaul, adds a lot to the game without radically changing it, is fully configurable, fps friendle, stable, and is still being developed updated. *All Natural *Animated Window Lighting System *AOG Greed Vision *Balanced Magic *Basic Physical Activities *Basic Primary Needs *Better Cities, a real fps hog and has compatibility issues but beautiful. see :https://medium.com/@dizzy_plays/an-oblivion-modding-guide-better-cities-ea8809e6739e *Better Dungeons *Darnified UI, may want to check out NorthernUI too--haven't tried it yet *Dibellas Watch *Elsewyr Anequina *Duke Patrick's Combat Archery *Dungeons of Tamriel *Dynamic Map *Engine Bug Fixes *Enemy Actors Use Powers *Enemy Actors Autoheal *Fighter's Guild Quests *Oblivion Grass Overhaul, read the link above if using Better Cities *Oblivion Grass Overhaul Compatibility for Unique Landscapes and More *Oblivion Grass Overhaul - Atlas Textures *Hotkey Pro *HUD Status Bars *Immersive Interiors *The ImperialEmpire series *Kvatch Rebuilt *Lost Spires *NPC and Creature Buffer *Oblivion Reloaded, read up on it before deciding. I'm using an older version and turned off most of the non-graphics features. Also V7.0 seems to have issues with shadows on Win10 and AMD graphics cards. V 7.1 is just out don't know if it fixes these issues. *PT Falling Stars *PT Roaming NPC's *Realistic Leveling, although Maskar has a new leveling mod--haven't tried it yet. *RefScope *Trails of Cyrodil Merged, and patch if using Unique LAndscapes *Unique Landscapes, beautiful but needs patches for some mods and may lower fps a bit? *Waalx Animals and Creatures, just use the .esm, .bsa, and create a blank .esp named WAC.esp, see Maskars Oblivion Overhaul, post section sticky post.
×
×
  • Create New...