You are viewing a potentially older version of this package. View all versions.
Yorimor-CustomStoryLogs-1.3.2 icon

CustomStoryLogs

Allows the addition of custom story logs.

Date uploaded a month ago
Version 1.3.2
Download link Yorimor-CustomStoryLogs-1.3.2.zip
Downloads 10702
Dependency string Yorimor-CustomStoryLogs-1.3.2

This mod requires the following mods to function

BepInEx-BepInExPack-5.4.2100 icon
BepInEx-BepInExPack

BepInEx pack for Mono Unity games. Preconfigured and ready to use.

Preferred version: 5.4.2100
Evaisa-LethalLib-0.15.1 icon
Evaisa-LethalLib

Personal modding tools for Lethal Company

Preferred version: 0.15.1
xilophor-LethalNetworkAPI-2.1.6 icon
xilophor-LethalNetworkAPI

A library/API to allow developers to easily add networking to their mods.

Preferred version: 2.1.6

README

CustomStoryLogs


A Mod Library for use with Lethal Company.

Allows you to add custom story logs to the terminal, and in world interactables to unlock them.

This is my first mod intended for use by other people as a library, so the code is inconsistent and messy. Any feed back and help is very welcome!

Logs can be added with code, or through a text/json file created with my Log Builder tool!

See the Useful Links section below, for tools to help with coordinates.


Guides

Using the Log Builder

Fill out all the box in the Log Builder, add as many logs as you need.

Once you have everything filled out, click export to generate the json data (it will give you something similar to the below example), and then click copy text.

{
    "username": "Yorimor",
    "modname": "ExampleLog",
    "version": "1.2.3",
    "logs": {
        "0": {
            "name": "Example - May 12",
            "text": "This is an example log, created with the log builder!\n\n:D",
            "moon": "71 Gordion",
            "position": {
                "X": "-28",
                "Y": "-2",
                "Z": "-15"
            },
            "rotation": {
                "X": "0",
                "Y": "0",
                "Z": "0"
            }
        }
    }
}

In your own mods files create the following folders <Your Mod Folder>/BepInEx/plugins/CustomStoryLogs/logs/. Please see my Example Mod as an example of this.

In the logs folder create a new .txt or .json file (name it anything you like) and paste the json data into the file and save it.

And that's it! My mod will automatically load the logs and place them in game for you!

Add Logs With Code

Add a story log:

// public static int RegisterCustomLog(string modGUID, string logName, string text, bool unlocked=false, bool hidden=false)
int myLogID = CustomStoryLogs.CustomStoryLogs.RegisterCustomLog(YOUR_MOD_GUID, "Log Name - May 09", "test log\n\n:)");

The function returns an integer which is used to uniquely identify the new log. It is created from a hash of your mods GUID and the first word in the log name.

The first word in the log name is also used as the keyword for opening the log, e.g. to open Bridge collapse - Mar 19 you would type view bridge.

The log ID is used below to create an interactable pickup in world. Alternatively you can call CustomStoryLogs.CustomStoryLogs.UnlockStoryLogOnServer(logID) to unlock the log through code instead of a pickup.

You can also define if the log is already unlocked or hidden the terminal list.

Add an interactable:

// public static void RegisterCustomLogCollectable(string modGUID, int logID, string planetName, Vector3 position, Vector3 rotation, int modelID=0)
CustomStoryLogs.CustomStoryLogs.RegisterCustomLogCollectable(YOUR_MOD_GUID, myLogID, "71 Gordion", new Vector3(-28,-2,-15), Vector3.zero);

This spawns the interactable on the Company moon just in front of the ship. Interactable objects are removed when leaving the moon.

Planet name checks for the moons display name and scene name.

Adding Custom Models

You can register a prefab as a new model, and use it for collectables. Any custom models will require a CollisionBox component to be attached, as this will be used for the interaction.

Follow the asset bundling guide on lethal.wiki to make and load your own assets

// public static int RegisterCustomLogModel(GameObject customModel)
int modelID = CustomStoryLogs.CustomStoryLogs.RegisterCustomLogModel(myModel);

// Then use this ID for any of the collectables you want to use the new model
CustomStoryLogs.CustomStoryLogs.RegisterCustomLogCollectable(YOUR_MOD_GUID, "71 Gordion", new Vector3(-28,-2,-15), Vector3.zero, modelID);
Log Unlocked Events

There are two events for when logs are unlocked; One for a specific logs, and one for when any log is unlocked.

Your event method

This will need to be somewhere in your plugins code, and will be the code you want to run whenever the event is triggered.

// Both events provide the unlocked logs ID
public static void MyEvent(int logID)
{
    // Your code here
}

Any Log Event

Gets called when any Custom Story Log is unlocked

CustomStoryLogs.CustomStoryLogs.AnyLogCollectEvent += MyEvent;

Specific Log Event

Gets called when the specific Custom Story Log is unlocked.

Use this line after you have added your log using the Add logs with code section above.

CustomStoryLogs.CustomStoryLogs.RegisteredLogs[logID].Event += MyEvent;
Miscellaneous

Update Log Text

Using the below code, you can modify the text of one of your logs.

CustomStoryLogs.CustomStoryLogs.RegisteredLogs[logID].UpdateText("New Text");

Useful links

Imperium is a very straight forward way to get coordinates in a moon, the other two require some setup/learning.


Planned Features

  • [ ] Add custom log views, instead of having it all under sigurd
  • [ ] In game tool for placing logs
  • [ ] Add to nuget
  • [x] Events for when a log is collected
  • [x] Ability to use custom model/game objects for the pickup
  • [x] Add logs from text/json files

Credits

CHANGELOG

v1.4.3 - Added debug log message for created log IDs

v1.4.2 - Added config to enable/disable the placement tool

v1.4.1 - Added in game placement tool

v1.3.2 - Fix for already collected log events not being called on game/save reload

v1.3.2 - Now checks for scene names as well as planet names. Added check for invalid directories.

v1.3.1 - Added Events, and a way to change log text

v1.2.1 - Added ability to use custom models

v1.1.1 - Added ability to load logs from json/txt files

v1.0.3 - Minor changes, added some debug logs

v1.0.2 - Changed register methods to be static

v1.0.1 - Fixed rotation not being applied

v1.0.0 - Initial Release