using Synapse.Api.Plugin;
Name = "FirstPlugin", //The Name of Your Plugin
Author = "Dimenzio", // Your Name
Description = "My First Awesome Plugin", // A Description of your Plugin
LoadPriority = 0, //When your Plugin should get loaded (use 0 if you don't know how to use it)
SynapseMajor = 2, //The Synapse Version for which this Plugin was created for (SynapseMajor.SynapseMinor.SynapsePatch => 2.7.0)
Version = "v.1.0.0" //The Current Version of your Plugin
public class PluginClass : AbstractPlugin
public override void Load()
Logger.Get.Info("Hello World");
//This Method is completely optional and you may not need it.
//It's called whenever Synapse tries to reload all config files inside the system.
public override void ReloadConfigs()