Назад в магазин
Skript
Modrinth Plugin

Skript

Skript is a Paper plugin which allows server admins to customize their server easily, but without the hassle of programming a plugin or asking/paying someone to program a plugin for them.

Информация о Minecraft-продукте

Важное о товаре

Совместимость, версии Minecraft, загрузчики и данные внешнего источника.

Тип

Plugin

Доступ

Бесплатно

Последняя версия

2.16.0

Загрузки

163 568

Загрузчики / Платформы

paper

Minecraft версии

1.20.4 – 1.21.11 26.1 26.1.1 26.1.2 26.2

Категории

utility

Описание

Подробная информация

![A Logo of Skript](https://raw.githubusercontent.com/SkriptLang/Skript/master/.github/assets/Cover.jpg) Skript is a Paper plugin that enables administrators to create unique and inspiring features for their servers. It is simple to use with no prior experience necessary. For those who already know how to write plugins, Skript makes it easy to build prototypes that can later be developed into full plugins. Altogether, Skript is more than capable of creating a feature-rich server experience. ## About Skript Originally released in 2011 on [dev.bukkit.org](https://dev.bukkit.org/projects/skript) by Njol, Skript has always been about inclusive programming. Skript is an easy-to-use language that provides a path for server admins to easily create unique and inspiring features for their Minecraft server with no prior experience necessary. Today, the project lives on [GitHub](https://github.com/skriptlang/skript) and is completely community made. With thousands of contributions and community hours poured into continued development, Skript is a very powerful plugin for any server owner. Unlike other scripting plugins, Skript's syntax is easy to understand and follow. The focus is on simple English sentences that can be written and read by anyone. No odd syntax patterns, line breaks, or difficult setups. Plus, a large, helpful, and rapidly growing community exists to provide you with the support and directions you need. ## Features Skript is packed with useful syntax for building both simple and complex creations. **Natural Syntax** \ Simple-to-use and easy to understand English sentences power Skript to customize your server. **Custom Commands** \ Define custom commands to integrate your creations or override existing ones to change their behavior. **Functions** \ No need to copy and paste. Functions allow you to run the same code over and over again with customizable inputs. **Effective Error Messages** \ While traditional errors can be harder to understand for beginners, Skript focuses on presenting them as simply as possible. If Skript is unable to fix your error for you, it will report back in clear terms what went wrong. **Extendable** \ The community continues to build addons that further enhance Skript's capabilities. If Skript cannot do something, it is likely that someone has built as an addon that can. As an example, it is easy to build a simple home system with Skript: ```applescript command /sethome: permission: skript.home # Permission required for this command description: Set your home # Description of this command executable by: players # Console won't be able to run this command trigger: # The actual trigger/code that will run when someone do /sethome # Set a unique variable to sender's location set {home::%player%} to location of player # Send a message to the sender message "Set your home to <grey>%location of player%<reset>" command /home: permission: skript.home description: Teleport yourself to your home trigger: # Check if that variable we used in /sethome has been set (in other words, if player ever ran /sethome) if {home::%player%} is not set: message "<red>You have not set your home yet! Run /sethome first." stop trigger # stop the code here, lines below won't run # Teleport the player to their home teleport player to {home::%player%} send "<lime>You have been teleported to your home." ``` ## Requirements Skript requires [Paper](https://papermc.io/software/paper/) to work. You heard it right, **Spigot** does not work. Skript supports the last 18 months of Minecraft versions, counting from the release date of Skript's newest version. When new Minecraft versions are released, we will work as quickly as possible to support them. It is worth noting that the latest version of Skript may work fine on new versions, but without support for any new features. ## Downloading Skript, Addons and Scripts **Skript** \ You can download the latest stable version of Skript by clicking the download button above. For pre-releases, see the project's [GitHub releases page](https://github.com/skriptlang/skript/releases). As with any plugin, place the downloaded Skript file inside the server's plugins folder. Restart the server, and once it loads, you will be ready to begin. **Addons** \ Addons follow the same setup as any plugin. Place the downloaded file into the server's plugins folder and restart. Some addons may have different setups or require tweaking. Be sure to review the addon's download page for any installation instructions. **Scripts** \ Creating a new script is easy. Simply create a new `.sk` file in Skript's `scripts` directory. Installing a script works the same way: simply move it to that same `scripts` directory. Then, you can load the script using `/sk reload <file name>`. ## Having an Issue with Skript? If you experience unexpected behavior with Skript, you can report it as an issue on our [GitHub Repository](https://github.com/skriptlang/skript/issues). Understand that this platform is for bug reports only. If you need help with your scripts, please review the linked resources below. ## Resources **Getting Help** \ Community support is available through the [skUnity Discord Server](https://discord.gg/skript), and the [SkriptHub Discord Server](https://discord.gg/phpwhgu). skUnity also hosts [tutorials for those new to Skript](https://docs.skunity.com/guides). **Skript Documentation** \ Tutorials are available on our documentation site: [docs.skriptlang.org](https://docs.skriptlang.org/). You will also be able to find a list of all syntax Skript has to offer. Community-built documentation is available on [skUnity](https://docs.skunity.com/) and [SkriptHub](https://skripthub.net/docs/) too. **Addons and Scripts** \ You can find a wide selection of addons and scripts from multiple community platforms, including [skUnity](https://forums.skunity.com/resources/) and [SkriptHub](https://skripthub.net/scripts/). As with any plugin or tool that has the ability to modify your server's functionality, take caution in what you install. ## Contributing to Skript Skript is a large project with many parts working together. If you are new to Java, Skript is not the project for you. Due to Skript's size and development history, working on the project demands prior Java experience. It can be useful to familiarize yourself with Skript's codebase by exploring many of the addons that have been built for it (see below). Anyone interesed in contributing should review our [contributing guidelines](https://github.com/skriptlang/skript/blob/master/.github/contributing.md).

Разработчик

Автор проекта

Профиль и данные получены с Modrinth

Открыть на Modrinth

Галерея продукта

Изображения проекта

Скриншоты и изображения из оригинальной страницы Modrinth.

Список изменений

Версии проекта

Опубликованные версии и оригинальные файлы Modrinth.

2.16.0 Актуальная Release 15.07.2026

2.16.0

Поддерживаемые версии Minecraft
1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1.2 26.2
Загрузчики / Платформы
paper
Показать изменения
# Skript 2.16.0 **Supports: Paper 1.21.4 - 26.2** Today, we're excited to be releasing Skript 2.16! This release, while a bit smaller, includes a handful of new features to work with as we continue to lay the groundwork for even more exciting features later this year. In accordance with supporting the last 18 months of Minecraft updates, Skript 2.16.0 supports **Minecraft 1.21.4 to 26.2**. Newer versions may also work but were not tested at time of release. **[Paper](https://papermc.io) is required**. Below, you can familiarize yourself with the changes. Additionally, [by clicking here](https://docs.skriptlang.org/docs.html?isNew), you can view the list of new syntax on our documentation site. As always, report any issues to our [issues page](https://github.com/SkriptLang/Skript/issues)! Per our [release model](https://github.com/SkriptLang/Skript/blob/master/CLOCKWORK_RELEASE_MODEL.md), we plan to release 2.16.1 on August 1st. We may release additional emergency patch releases before then should the need arise. For the full changelog, please visit our [GitHub release page](https://github.com/SkriptLang/Skript/releases/tag/2.16.0). Happy Skripting!
Войти

4.99 MB

2.15.4 Release 01.07.2026

Patch Release 2.15.4

Поддерживаемые версии Minecraft
1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1.2
Загрузчики / Платформы
paper
Показать изменения
# Skript 2.15.4 **Supports: Paper 1.21.1 - 26.1.2** Today, we are releasing Skript 2.15.4 to finish ironing out bugs from the transition of legacy systems in 2.15. As always, you can report any issues on our [issue tracker](https://github.com/SkriptLang/Skript/issues). For the full changelog, please visit our [GitHub release page](https://github.com/SkriptLang/Skript/releases/2.15.4). Happy Skripting!
Войти

4.89 MB

2.15.3 Release 01.06.2026

Patch Release 2.15.3

Поддерживаемые версии Minecraft
1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2
Загрузчики / Платформы
paper
Показать изменения
# Skript 2.15.3 **Supports: Paper 1.21.1 to 26.1.2** Today, we are releasing Skript 2.15.3 to continue ironing out bugs reported with the recent 2.15 releases. As always, you can report any issues on our [issue tracker](https://github.com/SkriptLang/Skript/issues). For the full changelog, please visit our [GitHub release page](https://github.com/SkriptLang/Skript/releases/2.15.3). Happy Skripting! https://github.com/SkriptLang/Skript/releases/tag/2.15.3
Войти

4.89 MB

2.15.2 Release 01.05.2026

Emergency Patch Release 2.15.2

Поддерживаемые версии Minecraft
1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2
Загрузчики / Платформы
paper
Показать изменения
# Skript 2.15.2 **Supports: Paper 1.21.1 to 26.1.2** Today, we are releasing Skript 2.15.2 as an emergency patch to fix a major bug in Skript 2.15.1. As always, you can report any issues on our [issue tracker](https://github.com/SkriptLang/Skript/issues). For the full changelog, please visit our [GitHub release page](https://github.com/SkriptLang/Skript/releases/2.15.2). Happy Skripting! https://github.com/SkriptLang/Skript/releases/tag/2.15.2
Войти

4.89 MB

2.15.1 Release 01.05.2026

Patch Release 2.15.1

Поддерживаемые версии Minecraft
1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2
Загрузчики / Платформы
paper
Показать изменения
# Skript 2.15.1 **Supports: Paper 1.21.1 to 26.1.2** Today, we are releasing Skript 2.15.1 to resolve some of the issues found with Skript 2.15. As always, you can report any issues on our [issue tracker](https://github.com/SkriptLang/Skript/issues). For the full changelog, please visit our [GitHub release page](https://github.com/SkriptLang/Skript/releases/2.15.1). Happy Skripting! https://github.com/SkriptLang/Skript/releases/tag/2.15.1
Войти

4.89 MB

2.15.0 Release 15.04.2026

Skript 2.15.0

Поддерживаемые версии Minecraft
1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1
Загрузчики / Платформы
paper
Показать изменения
# Skript 2.15.0 **Supports: Paper 1.21.1 to 26.1.1** Today, we are releasing Skript 2.15.0 with exciting features, bug fixes and enhancements. This release includes a few new major features and enhancements as we lay the groundwork for some exciting things coming later this year. As always, you can report any issues on our [issue tracker](https://github.com/SkriptLang/Skript/issues). For the full changelog, please visit our [GitHub release page](https://github.com/SkriptLang/Skript/releases/2.15.0). Happy Skripting! https://github.com/SkriptLang/Skript/releases/tag/2.15.0
Войти

4.89 MB

2.14.2 Release 02.03.2026

Skript 2.14.2

Поддерживаемые версии Minecraft
1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11
Загрузчики / Платформы
paper
Показать изменения
# Skript 2.14.2 **Supports: Paper 1.21.0 - 1.21.11** Today, we are releasing Skript 2.14.2 to clean up some API issues, fix up some docs oversights, and generally squash a few bugs. As always, you can report any issues on our [issue tracker](https://github.com/SkriptLang/Skript/issues). For the full changelog, please visit our [GitHub release page](https://github.com/SkriptLang/Skript/releases/2.14.2). Happy Skripting! https://github.com/SkriptLang/Skript/releases/tag/2.14.2
Войти

4.66 MB

2.14.1 Release 01.02.2026

Patch Release 2.14.1

Поддерживаемые версии Minecraft
1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11
Загрузчики / Платформы
paper
Показать изменения
# Skript 2.14.1 Today, we are releasing Skript 2.14.1 to resolve some of the issues found with Skript 2.14, and a significant number of older bugs too! As always, you can report any issues on our [issue tracker](https://github.com/SkriptLang/Skript/issues). For the full changelog, please visit our [GitHub release page](https://github.com/SkriptLang/Skript/releases/2.14.1). Happy Skripting! https://github.com/SkriptLang/Skript/releases/tag/2.14.1
Войти

4.66 MB

2.14.0 Release 15.01.2026

Feature Release 2.14.0

Поддерживаемые версии Minecraft
1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11
Загрузчики / Платформы
paper
Показать изменения
# Skript 2.14.0 Today, we are excited to be starting the year off strong with the formal release of Skript 2.14.0! This release includes dozens of major contributions to enhance Skript's existing features, along with a handful of exciting new features. With all of this early spring cleaning, there are some important breaking changes to be aware of, specifically around visual effects and potions. Be sure to review the full changelog linked below. As always, you can report any issues on our [issue tracker](https://github.com/SkriptLang/Skript/issues). For the full changelog, please visit our [GitHub release page](https://github.com/SkriptLang/Skript/releases/2.14.0). Happy Skripting!
Войти

4.66 MB

2.13.2 Release 02.12.2025

Skript 2.13.2

Поддерживаемые версии Minecraft
1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10
Загрузчики / Платформы
paper
Показать изменения
# Skript 2.13.2 Today, we are releasing Skript 2.13.2 to resolve some various issues found with Skript 2.13, as well as solving a few older bugs. We have also revamped our contributor guide to be much more beginner-friendly, so now's a great time to try making your first PR! For existing contributors, please note the addition of the AI usage disclosure requirement for PRs. We want to thank the contributors that made this release possible. Your work plays a crucial role in making Skript better, and we are immensely appreciative of the time and effort put into all contributions. You can report any issues at <https://github.com/SkriptLang/Skript/issues>. As always, be sure to read the changelog for full details. Happy Skripting! <https://github.com/SkriptLang/Skript/releases/tag/2.13.2>
Войти

4.35 MB

2.13.1 Release 07.11.2025

Skript 2.13.1

Поддерживаемые версии Minecraft
1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10
Загрузчики / Платформы
paper
Показать изменения
### Skript 2.13.1 Today, we are releasing Skript 2.13.1 to resolve some of the most common issues reported with Skript 2.13.0. We want to thank the contributors that made this release possible. Your work plays a crucial role in making Skript better, and we are immensely appreciative of the time and effort put into all contributions. You can report any issues at https://github.com/SkriptLang/Skript/issues. As always, be sure to read the changelog for full details. Happy Skripting! https://github.com/SkriptLang/Skript/releases/tag/2.13.1
Войти

4.35 MB