github SkriptLang/Skript 2.11.0-pre1
Pre-Release 2.11.0-pre1

pre-releaseone day ago

Skript 2.11.0-pre1

It's no joke: Skript 2.11.0-pre1 is now available! This release includes dozens of new features, bug fixes, and other enhancements.

Below, you can familiarize yourself with the changes. Additionally, by clicking here, you can view the list of new syntax on our documentation site. As always, report any issues to our issues page!

Per our release model, we plan to release 2.11.0 on April 15th. We may release additional pre-releases before then should the need arise.

Happy Skripting!

Major Changes

⚠ Breaking Changes

  • The last colour of %string% expression has been reworked, adding additional support. This necessitated a pattern change, so existing code using this expression should now use last string colour code of %string%.
  • The potion type type has been renamed to potion effect type. Usages of the previous name will need to be updated in scripts.
  • The chiseled bookshelf and decorated pot inventory types have been renamed to [chiseled] bookshelf inventory and decorated pot inventory respectively. Usages of the previous names will need to be updated in scripts.
  • event-item in the 'armor change event' has been removed in favor of 'old armor item' and 'new armor item'

Changelog

Additions

  • #7006 Adds full support for modifying players' world borders.
  • #7270 Adds additional syntax for interacting with dropped items.
  • #7314 Adds Warden related syntaxes:
    • Make a Warden investigate an area.
    • Get the entity a Warden is most angry at.
    • Get the anger level of a Warden.
  • #7316 Adds support for dealing with the entities in 'entity storage' blocks like beehives, as well as other beehive related syntax.
  • #7332 Adds an event that is triggered at certain real-life times of day.
  • #7351 Adds an effect to zombify/dezombify villagers.
  • #7358 Adds Allay related syntaxes:
    • Get or change whether allays can duplicate and their duplication cooldown.
    • Get the target jukebox of an Allay.
    • Force an Allay to duplicate or dance.
  • #7361 Adds an effect and condition for whether axolotls are playing dead.
  • #7362 Updates sleeping related syntaxes to support bats, foxes and villagers.
  • #7365 Adds effect to make a player sprint, adds a condition to check if a camel is using its dash ability.
  • #7386 Adds ability to check if an entity is riding a specific other entity. Prevents error when trying to make an entity ride itself.
  • #7415 Adds ability to get and change the simulation and view distances on Paper servers.
  • #7453 Adds support for specifying slots in the armor change event like on helmet change.
  • #7479 Adds syntax related to goats.
  • #7480 Adds Enderman related syntaxes:
    • Check or change the block an Enderman is carrying.
    • Make Enderman randomly teleport or towards an entity.
    • Check if an Enderman is being stared at.
  • #7532 Adds a config option for the number of variable changes required to trigger a save.
  • #7550 Adds various math functions:
    • mean(numbers)
    • median(numbers)
    • factorial(number)
    • root(number, number)
    • permutation(number, number)
    • combination(number, number)
  • #7554 Moves the "invulnerability time" expression to support timespans and deprecates the tick-based version.
  • #7564 Allows modifying the persistence of entities and blocks, and allows modifying whether entities should despawn when the player is far away.
  • #7586 Adds spanish language option.
  • #7597 Adds checking for whether a ghast is charging its fireball and adds getting and changing the explosive power of a ghast's fireball.
  • #7683 Added support for fishing states and generic fishing state change event.
  • #7701 Adds an expression to treat a list as if it is of the form a, b, or c rather than a, b, and c: if {_X} is any of {_possibilities::*}.
  • #7702 Adds an expression to change phantom and slime entity sizes.
  • #7709 Adds past event-item, future event-item, and event-slot to the armor change event.
  • #7714 Adds the entity shoot bow event, as well as some expressions for it.
  • #7722 Adds the ability to clarify the type of a literal, allowing e.g. black (wolf color) or black (color).
  • #7747 Adds support for interacting with pandas.
  • #7750 Adds support for obtaining items with/without their tooltip.

Changes

  • #7276 Changes the pattern of last colour of %string%, adds support for returning colour objects, the first colour, and all colours.
  • #7287 Improves the check for what types Skript attempts to compare by comparing super classinfos.
  • #7317 Adds examples to the location type.
  • #7440 Enforces the use of effect when using the type potion effect type.
  • #7442 Merges ExprWeather and ExprPlayerWeather to resolve syntax conflicts.
  • #7492 Allows the use of minecraft ids to refer to items: minecraft:oak_log.
  • #7547 Allows checking whether something is within multiple objects, e.g. if player is in world "world" or world "world_nether".
  • #7549 Allows using skript tag as an alternative for custom tag.
  • #7552 Allows using multiple numbers in the rounding expression.
  • #7602 Adds support for using experience as a regular number, allowing for arithmetic like 5 xp + 10.
  • #7622 Adds syntax that allows the user to improve the clarity of using experiment.
  • #7694 Allows itemstack as another way to reference the item type.
  • #7704 Adds support for with all item flags.
  • #7708 Adds support for using armour instead of armor.
  • #7716 Improves the errors for when a single value is passed, where multiple are expected.
  • #7762 Improves the registration and internal organization of the 'bell events'.

Bug Fixes

  • #7431 Fixes the order of in which sections are printed in debug mode.
  • #7566 Improved condition classes and added missing method overrides.
  • #7599 Changes how event-values are determined to avoid possible conflicts when 2 or more values could apply.
  • #7665 Ensures EffSort's input expression always returns a single value.
  • #7669 Fixes issue when using player in entity move event.
  • #7679 Fixes some incorrectly configured documentation annotations for events.
  • #7696 Fixes decorated pot and bookshelf item comparisons.
  • #7688 Fixes an issue where damage component were added to undamaged items.
  • #7713 Fixes an issue with comparing inventory slots.
  • #7717 Fixes an issue when using integers in the radians expression.
  • #7744 Fixes an issue where spawning a tropical fish of a specific type would spawn the incorrect type.

Removals

  • #7638 Removes undocumented expression [is] event cancelled as it has been superseded by CondCancelled for years.

API Changes

  • #7478 Deprecates Skript's EquipSlot in favour of Bukkit's EquipmentSlot.
  • #7512 Adds changers for event-values.
  • #7530 Adds a utility entry data for nesting entries.
  • #7548 Adds a canLoad() method to AddonModule for controlling whether a module should be initialized and then loaded.
  • #7575 Adds an ExperimentalSyntax that syntax elements can implement to state that the element requires an experiment to be enabled in order to use it.

Click here to view the full list of commits made since 2.10.2

Notices

Help Us Test

We have an official Discord community for beta testing Skript's new features and releases.

Thank You

Special thanks to the contributors whose work was included in this version:

As always, if you encounter any issues or have some minor suggestions, please report them at https://github.com/SkriptLang/Skript/issues.
If you have any bigger ideas or input for the future of Skript, you can share those too at https://github.com/SkriptLang/Skript/discussions.

Don't miss a new Skript release

NewReleases is sending notifications on new releases.