Setting up environment
Unturned Plugin Development #1
MCrow • 6 months ago
MCrow • 6 months ago
Starting with Unturned plugin development you need to set up your development environment. This guide will help you set up Visual Studio and install project templates for creating plugins.
This guide assumes you have a basic understanding of C# programming language and experience in hosting Unturned servers. If you are new to C# programming, I recommend you to learn the basics of the language before starting with plugin development. I personally recommend Bob Tabor's C# Fundamentals for Absolute Beginners course on Microsoft Virtual Academy.
Visual Studio is a IDE from Microsoft that is used for developing applications in C# and other languages. It is the recommended IDE for developing Unturned plugins.
.NET SDK contains .NET CLI, which is required to install custom project templates for Unturned plugins.
dotnet --version
to verify the installation. You should see the version of the SDK you installed.RestoreMonarchy.UnturnedTemplates are custom project templates I created to simplify the process of creating plugins.
dotnet new install RestoreMonarchy.UnturnedTemplates
Create a new project
.Unturned
. You should see the list of Unturned templates.