Skip to content
Axwabo edited this page Mar 2, 2025 · 3 revisions

Axwabo.CommandSystem

Welcome to the custom SCP: Secret Laboratory Command System wiki!

This documentation covers various topics, most of which are for developers.

Setup

To set up the plugin, refer to the README

For Server Staff

Check out these articles:

Development

Tip

The example project contains quick samples if you do not want to read the entire documentation.

By continuing through the wiki, it is assumed that you have a basic knowledge and understanding of:

  • C# topics: classes, attributes, enums
  • polymorphism, inheritance
  • plugin development with LabAPI
  • Unity's component system
  • structure of an SCP:SL player object (ReferenceHub, Inventory, PlayerRoleManager etc.)
    • Alternatively, you can call Player.Get with a ReferenceHub to use the wrapper instead of the base-game type.

After downloading the command system assembly, add it as a reference in your project.

Note

It is highly recommended to also reference the helper library which was used to create this plugin.

Get started by creating your first command.

Clone this wiki locally