Skip to content

external_tools

cyberrumor edited this page Mar 14, 2024 · 15 revisions

From ammo, type in tools to enter the tools organizer. This works much the same as the mod organizer, but it won't install tools into your game folder. Order doesn't matter so there's no sorting or activating / deactivating. This simply gives you a reproducible place to store your tools so you can more easily make launch scripts and don't have to extract tools yourself.

Here's some examples of launch scripts for tools. I personally store mine in /usr/local/bin but anywhere in your PATH will do.

SSEEdit

  • Install SSEEdit with ammo then rename the tool to sseedit.
#!/bin/bash

# Create a mod folder called "overwrite"
mkdir -p $HOME/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite

# Launch sseedit set to output to the "overwrite" mod
WINEPREFIX=$HOME/.steam/steam/steamapps/compatdata/489830/pfx wine $HOME/.local/share/ammo/Skyrim\ Special\ Edition/tools/sseedit/SSEEdit.exe -sse -o:$HOME/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite -I:$HOME/.steam/steam/steamapps/compatdata/489830/pfx/drive_c/users/steamuser/Documents/My\ Games/Skyrim\ Special\ Edition/Skyrim.ini

# If the "overwrite" mod is an empty folder, delete it.
rmdir --ignore-fail-on-non-empty ~/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite

SSELODGen

  • Install SSELODGen with ammo then rename the tool to sselodgen.
#!/bin/bash

# Create a mod folder called "overwrite"
mkdir -p $HOME/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite

# Launch sselodgen set to output to the "overwrite" mod
WINEPREFIX=$HOME/.steam/steam/steamapps/compatdata/489830/pfx wine $HOME/.locals/share/ammo/Skyrim\ Special\ Edition/tools/sseedit/SSELODGen.exe -sse -o:$HOME/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite -I:$HOME/.steam/steam/steamapps/compatdata/489830/pfx/drive_c/users/steamuser/Documents/My\ Games/Skyrim\ Special\ Edition/Skyrim.ini

# If the "overwrite" mod is an empty folder, delete it.
rmdir --ignore-fail-on-non-empty ~/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite

Nifskope

  • Install Nifskope with ammo then rename the tool to nifskope
#!/bin/bash

WINEPREFIX=$HOME/.steam/steam/steamapps/compatdata/489830/pfx wine $HOME/.local/share/ammo/Skyrim\ Special\ Edition/tools/nifskope/NifSkope.exe

DynDOLOD

  • Install DynDOLOD with ammo then rename the tool to dyndolod.

dyndolod

#!/bin/bash

# Create a mod folder called "overwrite"
mkdir -p $HOME/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite

# Launch dyndolod set to output to the "overwrite" mod
WINEPREFIX=$HOME/.steam/steam/steamapps/compatdata/489830/pfx wine $HOME/.local/share/ammo/Skyrim\ Special\ Edition/tools/dyndolod/DynDOLOD.exe -SSE -o:$HOME/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite -I:$HOME/.steam/steam/steamapps/compatdata/489830/pfx/drive_c/users/steamuser/Documents/My\ Games/Skyrim\ Special\ Edition/Skyrim.ini

# If the "overwrite" mod is an empty folder, delete it.
rmdir --ignore-fail-on-non-empty ~/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite

texgen

#!/bin/bash

# Create a mod folder called "overwrite"
mkdir -p $HOME/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite

# Launch texgen set to output to the "overwrite" mod
WINEPREFIX=$HOME/.steam/steam/steamapps/compatdata/489830/pfx wine $HOME/.local/share/ammo/Skyrim\ Special\ Edition/tools/dyndolod/TexGen.exe -SSE -o:$HOME/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite -I:$HOME/.steam/steam/steamapps/compatdata/489830/pfx/drive_c/users/steamuser/Documents/My\ Games/Skyrim\ Special\ Edition/Skyrim.ini

# If the "overwrite" mod is an empty folder, delete it.
rmdir --ignore-fail-on-non-empty ~/.local/share/ammo/Skyrim\ Special\ Edition/mods/overwrite
Clone this wiki locally