Skyrim Special Edition
0 of 0

File information

Last updated

Original upload

Created by

Borgut1337

Uploaded by

Borgut1337

Virus scan

Safe to use

Tags for this mod

23 comments

  1. Pirat2004
    Pirat2004
    • member
    • 0 kudos
    does the ordinator patch version here also work with vorkiinator? 
    1. Borgut1337
      Borgut1337
      • premium
      • 507 kudos
      Probably, yes (assuming there are some scripts from Ordinator still in Vokriinator that are also optimised by my files). At worst, nothing will change and you wasted a few kilobytes of hard drive space by installing my files.

      You'd probably also want to look at the Optimised Scripts for Vokrii then, since Vokriinator presumably also uses some Vokrii scripts: https://www.nexusmods.com/skyrimspecialedition/mods/77356
  2. ThorstenLicht
    ThorstenLicht
    • member
    • 0 kudos
    Is this compatible with the v1.6.1130 ?
    1. Borgut1337
      Borgut1337
      • premium
      • 507 kudos
      yes (assuming all dependencies are)
  3. Shad0wAng3l09
    Shad0wAng3l09
    • premium
    • 155 kudos
    wb_almalexiasgrace_script.pex conflicts with Phenderix Elements. Dunno if it'll cause issues of any kinda but figured I'd bring it up
    1. Borgut1337
      Borgut1337
      • premium
      • 507 kudos
      Highly doubt they changed anything meaningful to that script, but just in case, probably safest to let their file overwrite mine then (but very likely it won't matter)
    2. Shad0wAng3l09
      Shad0wAng3l09
      • premium
      • 155 kudos
      that's what i did. ill check later if no one else does, not tryna restar agin though lol
  4. DaydreamingDay
    DaydreamingDay
    • premium
    • 333 kudos
    Added to my Free FPS guide, thanks Borgut1337 :)
  5. discotutoss
    discotutoss
    • supporter
    • 15 kudos
    Muchas gracias!!
  6. markourm
    markourm
    • premium
    • 7 kudos
    Thank you for your work on optimizing these scripts.
    Does the "Optimised Scripts for Apocalypse-Ordinator Patch" require PAPER?
    1. Borgut1337
      Borgut1337
      • premium
      • 507 kudos
      Technically, no. So you could just download only that file (without the main file), and you'd have some tiny optimisations in those 3 scripts without affecting the rest, and without requiring PAPER. There are really only tiny improvements in those 3 files though, so it'd hardly be worth the effort... but you could if you want to.
  7. emperor6928
    emperor6928
    • member
    • 3 kudos
    Any chance of fixing the bug where tumble magnet doesn't work when you have precision installed?
    1. Borgut1337
      Borgut1337
      • premium
      • 507 kudos
      I took a very quick look in the Apocalypse scripts / plugin, but I see nothing obvious there that could be fixed. While Precision certainly looks like a very impressive mod, it seems like a rather safe bet that it is simply a bug caused by Precision where it somehow breaks a part of the game's engine that this spell (and who knows what else) relies on to function correctly. 

      Precision seems to do a lot of injecting of code directly into the engine, and overwriting/replacing normal engine code that has been (likely only partially) reverse engineered. This has the potential of all kinds of weird and unpredictable side effects if it interacts with any engine code that was only partially or incorrectly reverse-engineered. And, if I look at the short timespan in which that mod's Bugs tab on the site has collected a huge number of entries, it makes me a bit suspicious.
  8. z4x
    z4x
    • premium
    • 315 kudos
    Would you mind showing some examples or we are supposed to just believe?
    1. Borgut1337
      Borgut1337
      • premium
      • 507 kudos
      The types of optimisations I've done (as I said in description, all really micro-optimisations) are as follows:

      1) ModAV / GetAV / DamageAV / other similar functions --> ModActorValue / GetActorValue / DamageActorValue (avoiding 1 function call every time)
      2) Replaced lots of int constants where floats were expected (and therefore cast into Floats at runtime) by float constants (0 --> 0.0, 1 --> 1.0, 100 --> 100.0, etc.)
      3) Removed some variables in some scripts that were being set and stored, but never used (usually Caster and/or Target, sometimes floats)
      4) In some cases where variables were only subsequently used as ObjectReference, stored them as type ObjectReference instead of Actor (because, when passing them as arguments into functions that expect ObjectReferences, the compiler otherwise actually inserts an explicit cast from Actor to ObjectReference that gets executed at runtime)
      5) In some cases where an Actor (typically Caster or Target) was stored as Actor variable only to be subsequently used in repeated (Caster == Game.GetPlayer()) comparisons, instead changed it to only compute (Caster == Game.GetPlayer()) once in OnEffectStart(), and store that as a Bool
      6) Replaced some instances of "if A == true" by just "if A"
  9. SNRPDownloader123987
    SNRPDownloader123987
    • member
    • 0 kudos
    Safe to install on an existing save?
    1. Borgut1337
      Borgut1337
      • premium
      • 507 kudos
      Should be. To be 100% safe, try to make sure that you don't have any Apocalypse spells actively running while you make the saved game that you will load.
    2. SNRPDownloader123987
      SNRPDownloader123987
      • member
      • 0 kudos
      Thanks!
  10. aryel209
    aryel209
    • member
    • 3 kudos
    Wow, a quality mod! thank you!