Installation

Learn how to set up Plugify, run the testing app, and install Plugify implementations.

Implementations

If you’re using Plugify for game modding (e.g., Counter-Strike 2), you’ll need to install S2-Launcher or MM-Loader. These projects provide pre-configured setups for specific games.

Running the Testing App

The plug app allows you to test plugins and language modules locally. Follow these steps to get started:

Clone the Repository

  1. Open a terminal or command prompt.
  2. Clone the Plugify repository:
    git clone https://github.com/untrustedmodders/plugify.git
    

Build the Project

  1. Navigate to the Plugify directory:
    cd plugify
    
  2. Create a build folder and configure the project with CMake:
    mkdir build && cd build
    cmake ..
    
  3. Build the project:
    cmake --build . --target plug
    

Set Up the Extensions Folder

  1. Inside the build directory (next to the plug executable), create an extensions folder:
    mkdir extensions
    
  2. Place your plugins and language modules inside this extensions folder.

Run the Testing App

  1. From inside the build directory, run the plug app:
    ./plug
    
  2. The app will automatically load any plugins and language modules located in the extensions folder next to it.