Skip to content

Installation

89pleasure edited this page Jul 18, 2026 · 4 revisions

Installation

PleasureLib is installed as a UE4SS dependency mod next to the mods that use it.

Requirements

  • Gothic 1 Remake
  • A working UE4SS installation
  • A consuming mod that uses PleasureLib

Install from the packaged folder

Copy the PleasureLib folder from the release package into the game's UE4SS mods directory. The final layout must be:

G1R/Binaries/Win64/ue4ss/Mods/PleasureLib/
  API.md
  enabled.txt
  readme.txt
  Scripts/
    main.lua
    pleasure_lib.lua
    pleasure_lib_settings.lua

Consuming mods sit next to it:

G1R/Binaries/Win64/ue4ss/Mods/PleasureLib/
G1R/Binaries/Win64/ue4ss/Mods/MyMod/

Optional mods.txt entry

PleasureLib can be listed before dependent mods in Mods/mods.txt:

PleasureLib : 1

This is optional when the consuming mod includes the Recommended Loader. The loader can locate PleasureLib even when the player did not maintain mods.txt manually.

Verify the installation

Start the game and inspect the UE4SS log. A successful load prints a line like:

[PleasureLib] loaded v0.5.0

If a dependent mod reports that PleasureLib could not be loaded, check the folder nesting and continue with Troubleshooting.

For mod authors

Install the complete shared PleasureLib folder. The core loads Scripts/pleasure_lib_settings.lua as a sibling module.

Do not copy individual PleasureLib scripts into each consuming mod. Depend on the shared folder and include only the small loader described in Recommended Loader. This keeps bug fixes and API versions centralized.

Clone this wiki locally