📜 other templates available at https://github.com/SkyrimScripting/SKSE_Templates
A simple SKSE plugin for Skyrim using:
- C++
- CMake
- CommonLibSSE NG
- automatically downloaded using vcpkg integration of CMake
Because this uses CommonLibSSE NG, it supports Skyrim SSE, AE, GOG, and VR!
Implements a few Papyrus functions in C++.
< better description coming soon >
- Visual Studio 2022 (the free Community edition is fine!)
vcpkg
-
- Clone the repository using git OR download it as a .zip
-
- Go into the
vcpkg
folder and double-click onbootstrap-vcpkg.bat
- Go into the
-
- Edit your system or user Environment Variables and add a new one:
- Name:
VCPKG_ROOT
Value:C:\path\to\wherever\your\vcpkg\folder\is
-
Once you have Visual Studio 2022 installed, you can open this folder in basically any C++ editor, e.g. VS Code or CLion or Visual Studio
-
for VS Code, if you are not automatically prompted to install the C++ and CMake Tools extensions, please install those and then close VS Code and then open this project as a folder in VS Code
You may need to click OK
on a few windows, but the project should automatically run CMake!
It will automatically download CommonLibSSE NG and everything you need to get started making your new plugin!
By default, when this project compiles it will output a .dll
for your SKSE plugin into the build/
folder.
But you probably want to put the .dll
into your Skyrim mods folder, e.g. the mods folder used by Mod Organizer 2 or Vortex.
You can configure this project to automatically output the SKSE plugin .dll
into:
-
<your mods folder>\<name you give this project>\SKSE\Plugins\<your mod>.dll
if you set theSKYRIM_MODS_FOLDER
environment variable to the root of your mods folder (i.e.<your mods folder>
) -
Example:
- Name:
SKYRIM_MODS_FOLDER
Value:C:\path\to\wherever\your\Skyrim\mods\are
- Name:
If you clone this template on GitHub, please:
- Go into
LICENSE
and change the year and change<YOUR NAME HERE>
to your name. - Go into
CODE_OF_CONDUCT.md
and change<YOUR CONTACT INFO HERE>
to your contact information.
It's good to have a Code of Conduct
and GitHub will show your project's CODE_OF_CONDUCT.md
in the project sidebar.
If you'd like to know more about open source licenses, see:
If you use this template, PLEASE release your project as a public open source project. 💖
PLEASE DO NOT RELEASE YOUR SKSE PLUGIN ON NEXUS/ETC WITHOUT MAKING THE SOURCE CODE AVAILABLE