Introduction

An entry point to Skript.

Welcome!

This gitbook contains a crash course in Skript programming, so if you're here to learn, you're in the right place. This page contains the very basic overview of Skript, including installation and some basic ideas on how Skript works.

We'll walk you through writing your first script, and hopefully get you more confident in using the language. After that, you can explore the rest of this site for more in-depth explanations and higher-level concepts. To get started, just click the Installation link at the bottom of this page.

For those of you who are already familiar with Skript, go ahead and use the navigation table on the left to jump to what you're interested in. If you're interested in helping out, the github repo is linked on the right. Pull requests are welcome!

Note: These tutorials are for the current version of the SkriptLang Skript fork (2.7.0) and are not guaranteed to be correct for other versions or forks. This site does not include any tutorials for addons, either.

Installation

Installing Skript is no different from any other plugin. You download the latest jar file, which can be found at https://github.com/SkriptLang/Skript/releases/latest.

You should ensure your server meets the requirements for running Skript:

  • A Spigot, Paper, or Paper fork server jar. Spigot is the absolute minimum and Skript includes some features that are only accessible when using Paper or a fork of Paper.

  • Minecraft Version. Skript 2.7 works for versions 1.13+.

    • 1.8 support can be found here, but is not official, nor recommended, nor guaranteed to work.

    • 1.9-1.12 support is limited to old versions of Skript that do not receive updates (2.6.4)

After you've downloaded the jar file, put it in your plugins folder in your server directory. Restart the server and Skript should generate the folder plugins/Skript.

Inside should be some files, config.sk, and the folder scripts.

The scripts folder should have a folder of example scripts inside it. These are very useful for understanding how scripts are written.

You can take some time to read through them, or you can move directly on to making your first script. Click The Basics below to move on.

Last updated