Skyrim Special Edition

File information

Last updated

Original upload

Created by

Chesko and Aytrus

Uploaded by

Aytrus

Virus scan

Safe to use

Mod articles

  • Last Seed Troubleshooting Guide

    You may encounter issues while using Last Seed, but that doesn't necessarily mean that Last Seed is the main cause of the issue. It could be caused by a number of other things, including mod conflicts, load order issues or save bloat. Before posting about any issues you are experiencing, please follow the steps below to resolve the issue, or determine its source.

    1. Have you examined the source files or ESP, and know what the source of the problem is?
    Yes: Please post a detailed description of the problem and how it can be fixed.
    No: Go to step 2.

    2. Please read the FAQ on the mod page and try the solutions that are listed there.
    Did one of those solutions fix the issue?
    Yes: Great!
    No: Go to step 3.

    3. Have you changed t...

  • SeedUtil API

    Importing SeedUtil
    The SeedUtil script is the primary way most mods should interact with Last Seed and contains many helpful functions. To call any of the following functions, download the SDK and in your script include the line:

    import SeedUtil

    Alternatively, you can call SeedUtil.FunctionName() without importing SeedUtil.

    Detecting Last Seed
    One of the challenges with making mods with soft dependencies is checking whether the parent mod is installed. Fortunately, Last Seed allows for graceful detection using the LastSeedRunning_KWCheck Global Variable. This Global variable changes from 1 to 2 when Last Seed is started, which allows other mod authors to check if the mod is running without requiring Last Seed as a master or throwing errors i...

  • Tips For Improving Performance

    Because of the wide array of features that Last Seed has, it can be a bit script-heavy when you have all the features enabled. This won't be a problem for most people, but if you already have a lot of script-heavy mods installed you may start running into problems. Note that this isn't a problem with Last Seed itself, but rather when Last Seed is combined with a number of other script-heavy mods.

    If you experience any of the following issues, it is a sign that your script engine is getting overloaded:

    * Waterskins or multi-part items take a long time to return to your inventory after consumption, or the items don't return at all.
    * Suddenly not getting any benefit from consuming food, requiring the mod to be restarted.
    * Primary Needs suddenly stop work...

  • Last Seed Keyword Guide

    Last Seed contains a number of keywords that have been injected into Update.esm, to allow for greater support for compatibility patches. These keywords can be used to add support for food items from other mods.

    In order to integrate compatibility into your mod, there are a few steps you can do. This uses the same methods as mods such as Frostfall. This allows you to add Last Seed keywords to your mod, without requiring Last Seed as a master file.

    You can find a practical example of how to implement keywords in the Last Seed Keywords Example file, which can be found under miscellaneous files in the Downloads section.

    Adding Basic Keywords
    1. Open Last Seed and your mod in XEdit.
    2. Copy the Keywords from Last Seed to your mod as override. S...