From b1f2ef17b5a9a1917dd5ffe46be55fb39e09e0c4 Mon Sep 17 00:00:00 2001 From: Eddoursul Date: Thu, 4 Aug 2022 21:37:18 +0200 Subject: [PATCH] Added dummy SKSE.pex --- scripts/SKSE.pex | Bin 0 -> 974 bytes source/scripts/SKSE.psc | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 scripts/SKSE.pex create mode 100644 source/scripts/SKSE.psc diff --git a/scripts/SKSE.pex b/scripts/SKSE.pex new file mode 100644 index 0000000000000000000000000000000000000000..301eef8a28edcef3adb297f354ebdade2f764b18 GIT binary patch literal 974 zcmb7C!EO^V5FIDmG})B2rKN#X2#X6B=!r{nK~#haAy7r6a&~tojZtDpwl`7!t~c&{ z0AIitaDf@`u2Q62@MYdS&%AkK`S;hmpUnmcpmX!<*$-%sKaNLd3!gzc%5z&dU(6)* zu*PRAZ6usR!gbWtzQiyNDj;+&ZLlRwiM&SVwKcH6!Jo9T4tg8n0)v9XP5uREs60ZS zsBz}>qE@Ld4(Q@)R@`b+%kNopfs|K+tr?lT#I32$b2QM+tjTpCFKPyF-WButTC#cR z;{+M3R7S9poeS?6EM)f7!xslA+Q@3pyw<_8lXF=~#`8VASJi}!`eSYL*z z3esUHobi;P%nIkw1nJ`o?GA^fwdAuk2{>ZUJkBQYdbH$;4l~qCYKU7z$!J27b~P!NYNgh4;_Mt={YO`@^>_IW zDSZI}4gNk1nl(r`+l|}~!@USw3=bouI|2O&+YFyZ*kSlQLROBT%b~#v4+PyZcS^Cx zpv+@TA%Xoek3}E`rJJ4YbbA~97CIYRz(Hwt(ELM(*4e7xprVItt2|;L;D{dL7#>vw voKOWXdkoFKfUbbYltpv2(UE`?V$*vpbgA@7Ey%G|kFF%E)l#Y(+^hQwq87}| literal 0 HcmV?d00001 diff --git a/source/scripts/SKSE.psc b/source/scripts/SKSE.psc new file mode 100644 index 00000000..ab6406a1 --- /dev/null +++ b/source/scripts/SKSE.psc @@ -0,0 +1,35 @@ +Scriptname SKSE Hidden +{Dummy SKSE script to avoid Papyrus errors, when SKSE is missing} +; General SKSE-specific information + +; get the major version of SKSE +int Function GetVersion() global + return 0 +endFunction + +; get the minor version of SKSE +int Function GetVersionMinor() global + return 0 +endFunction + +; get the beta version of SKSE +int Function GetVersionBeta() + return 0 +endFunction + +; get the release index of SKSE. This number is incremented every time +; SKSE is released outside of the development team +int Function GetVersionRelease() global + return 0 +endFunction + +; get the release index of this script file. +; Can be used to detect a script/runtime version mismatch +int Function GetScriptVersionRelease() global + return 65 +endFunction + +; get a plugins version number, -1 if the plugin is not loaded +int Function GetPluginVersion(string name) global + return -1 +endFunction