This is a template plugin for EXILED (EXtended In-runtime Library for External Development), a framework for creating plugins for SCP: Secret Laboratory servers. The plugin provides a basic structure for creating and managing events in the game.
The Exiled.Plugin.Template plugin is an example of how to create a simple plugin for EXILED. It includes a Verified
event handler, which is triggered when a player successfully passes verification on the server. The plugin logs information about the verified player, including their nickname
and UserId
.
-
Basic structure of the plugin
The plugin provides a ready-made structure for creating new plugins for EXILED, including basic methods and classes.
-
Handling the
Verified
eventThe plugin tracks the event when a player successfully passes verification on the server (
Verified
), and logs information about him (nickname
andUserId
). -
Automatic event registration and removal
The plugin automatically registers and removes event handlers when enabled and disabled.
The plugin supports basic configuration via the Config.cs
file.
Exiled.Plugin.Template:
# Is the plugin enabled?
is_enabled: true
# Are debug messages displayed?
debug: false
This project is distributed under the MIT license.