Other user's assetsAll the assets in this file belong to the author, or are from free-to-use modder's resources
Upload permissionYou are not allowed to upload this file to other sites under any circumstances
Modification permissionYou must get permission from me before you are allowed to modify my files to improve it
Conversion permissionYou are not allowed to convert this file to work on other games under any circumstances
Asset use permissionYou must get permission from me before you are allowed to use any of the assets in this file
Asset use permission in mods/files that are being soldYou are not allowed to use assets from this file in any mods/files that are being sold, for money, on Steam Workshop or other platforms
Asset use permission in mods/files that earn donation pointsYou must get permission to earn Donation Points for your mods if they use my assets
Author notes
This author has not provided any additional notes regarding file permissions
File credits
This author has not credited anyone else in this file
Donation Points system
This mod is not opted-in to receive Donation Points
How to install:
1. Go to your Skyrim Special Edition root directory. This is the same folder where SkyrimSE.exe is, usually "C:\Program Files (x86)\Steam\steamapps\common\Skyrim Special Edition\"
2. Rename "binkw64.dll" to "binkw64_.dll" <- now there's a _ at the end.
3. Put the "binkw64.dll" from downloaded archive into the folder mentioned in step 1.
4. If you did it correctly you should have two files in your folder now: "binkw64.dll" and "binkw64_.dll", that's all, you can start the game now.
How to check if everything is working correctly:
1. Go to where you installed "binkw64.dll" (SkyrimSE.exe folder)
2. Create a new file if it does not exist called "binkw64.log", make sure the extension says "log" and not "txt"!
3. Start game and then exit game, it's fine if you only entered to main menu, no need to load into any save game.
4. Now open the "binkw64.log" file, it will say what plugins if any were checked and whether they loaded correctly.
5. If the file is empty then no plugins were found! This could indicate a problem with permissions or the folder path "Data\DLLPlugins" does not exist.
For mod authors - how to get your DLL to load:
1. Put your dll file in "Data\DLLPlugins". That's all, your plugin will be loaded automatically.
(2.) OPTIONAL! If you need to run some code that can't be done in DllMain due to Loader lock or other issues then add this code to anywhere:
extern "C" { __declspec(dllexport) void Initialize() { // Do whatever you want here... } }
This function will be called immediately after DllMain, but this is not required if you only do simple memory edits.
Why make another one when others already exist?
I needed the plugin to be loaded before static constructors are executed in game code.