Skyrim
0 of 0

File information

Last updated

Original upload

Created by

nem-e5i5

Uploaded by

neme5i5

Virus scan

Safe to use

About this mod

This tools allows you to create, parse and edit pex files and to setup native, papyrus and skse function hooks

Requirements
Permissions and credits
New informations
Hi everyone, I just released the source code of this tool, it was a huge oversight to let this private (and believe it or not, I thought that the source was available when I left). I'm not going to dev anything anytime soon, I someone wants to update or reupload this, feel free to do it. I definitely think that (re)compiling pex script files (which is what this program does) is a missed opportunity. As for exemple, as soon as you are able to assemble a pex file from nothing (Pex.dll: you can) It's possible to create an open source programming language that does not suck (papyrus sucks) and compile to a skyrim mod, maybe even something that mixes skse internals and pure pex scripts, the possibilities are infinite.
That was for the compiling part, now about the recompiling: for programmers, IT IS A BAD PRACTICE, don't do that, unless you don't have any other options for what you are trying to achieve and (spoiler alert) there is always another options. Well that's the theory but in practice there are a lot of severely outdated or incompatible mods with an absent mod author that literally vanished from the Internet without leaving any source code for someone to continue there work if one wants to (Hi there!!) the point is, that it allow to generically update old scripts using outdated features (NetImmerse) to new ones (Nioverride) *wink* *wink* *wink* without even having to update every single mod by yourself, a script does it all. If you are creating a library and you are changing some core functionality and are forced to break retro compatibility, The best thing to do is to let mods author update their mods however it's not always going to happens and sometimes having a script that roughly does most of the update is actually an OK fall-back solution even if the update is not perfect or may break the mod, this mod is already lost anyway so there's nothing to loose.

Oh and concerning the HooKmmerse thing: it does not fall in the category where recompilation is OK, actually it the typical exemple of "there is always a better solution" and this solution was basically to create a native hook to the Set/GetNodeScale function so you can monitor everything from within without even having to touch any script file (that's for the solution in a imperfect world). If the world was perfect, SetNodeScale would not even have been allowed to exists in a first place since it's starts to create a conflict as soon as two mods doing the same thing are installed, they have no ways to know that there is another mod doing the same thing. That's what Nioverride added and that's what a buff system in a video game usually does (handling conflict on specific values, it exists in skyrim but node scales is not among those values)

TL;DR: compilation is awesome, recompilation is ok for outdated mods, respect the buffs.





OLD DESCRIPTION



What is it for an user?

It's an utility that allows modders to customize their/other modders' scripts with informations on you computer. Note that when you download a mod, this mod knows nothing about the mods you already have. With this tool, mods will be able to search incompatible patterns in your other mods and fix them. as for example. I'll release a mod soon using this tool. Stay tunned

What is it for a modder?
It's a C# dll and a command line tool that load and save *.pex files used by skyrim to store compiled script files. See it as an assembler/disassembler for skyrim with a scripting langage allowing you to release a mod that will install hooks or metadata relative to the user's computer in your/other modders' script files

Mods using this file so far:

How to use it as an user?
The GUI contains the required informations now

/!\ Mod Organizer /!\
: to use this software with Mod Organizer you must add it in the executable list and in "Arguments" put:
-mo "{mod organizer directory}\mods" "{mod organizer directory}\overwrite" "{mod organizer directory}\mods\Pex and PexCLI - Papyrus assembler and disassembler\scripts"
like this:

as for example, {mod organizer directory} is C:\Program Files (x86)\Mod Organizer for me, it should be the same for many of you
then note that Pex must have the top priority (and be at the very bottom of the list), it's really important since it overwrite some scripts in other mods

How to use it as a modder? - some obsolete stuff here
since pex.dll is written in C#, you'll have to use some C# - VB.NET - F# - C++/CX or any .NET compatible langage. I strongly recommand you to download Visual studio Express for C#, that is free.

There is two ways to use this tool, with the CLI or as a DLL. In the two cases you probably want to read the doxygen documentation available here

When you use this tool as a dll, you'll have to load/save/open files manually using PexFile.Load/SaveFile(string fileName). Use the debugger and you'll be fine. You can follow a tutorial on the internet if you never used C# before. Note that pex.dll is shared, don't ship it with you mod. instead use System.Reflection.Assembly.LoadFrom. Your .exe should install to data/tools/pex/mods. Try to provide a file "your_mod_name.bat" containing the command to install the mode and "del your_mod_name.bat" containing the command to uninstall it in the same folder as the .exe.

Whe you use this tool as a cli, you don't need visual studio, it works as a scripted installer/uninstaller using c# as scripting language (note that the file extension is .csx). here is an example script:
value.machineName.content = "THIS IS PRIVAAAAAAAATE";
return true;
end

as you can see this script, hide the machine name field, that should not even be present in the compiled script (ty bethesda btw). Note that return true; means that the script edited the file and that the file must be overwritten (return false means that the file was only consulted and that it's not nessessary to save the modifications). end means that every lines that follow must be ignored. It must be present at the end of the script. value is an instance of Pex.PexFile (see documentation) reprensenting the current file.
Note that you can't create methods since nested methods are not allowed in C#, instead you can use lambda expressions like this:

System.Func<int, int, int> MyCoolFunction = (x, y) => {
return x + y;
};
Console.WriteLine(MyCoolFunction(2, 2)); //print "4"

To run a script use the command "type my_script.csx | PexCLI.exe file1.pex file2.pex file3.pex"
Explaination: type myscript.csx echo the script in the standard output, the pipe "|" connect the previous standard output to the next standard input and the list of file are just command line arguments for PexCLI.exe
Note that you can use PexCLI.exe -all file1.pex file2.pex file3.pex that will proceed all files EXCEPT those passed as argument. It's especially useful to setup hooks since you most likely want to hook all files but the hook handler
Just like when you use this tool as a dll, create a "your_mod_name.bat" and a "del your_mod_name.bat" to respectively run the command to install and uninstall your mod, since users are not always familiar with windows' command prompt.

Final note
As a final note I'll use this tool a lot, if you want to use it too, don't forget to check my other mods using this tool, They'll all be open source it'll serve as examples. My method is to use visual studio and the dll to develop and debug. and then I use the CLI to deploy the file more easily, I think it's the best compromise. Finaly I think that users will not comment a lot about that, so feel free to ask questio about this tool or about pex files in general, I always answer questions even if even a 8 years old kid do less english mistakes than me