Hello,
This is the New Skript. The Skript Committee (the Skommittee, it’s just me so far) has voted upon a new Skript syntax. The language will be redone from the ground up. It will be easy to learn! Here is a sample of what to expect from a simple plugin.
[doublepost=1493778407,1493778371][/doublepost]Note that nothing here is final and will change.
This is the New Skript. The Skript Committee (the Skommittee, it’s just me so far) has voted upon a new Skript syntax. The language will be redone from the ground up. It will be easy to learn! Here is a sample of what to expect from a simple plugin.
code_language.skript:
[LoadCommand]
@Command(command: "demo", syntax: "/demo <text>", description: "This is the demo for New Skript")
@Permission("demoPlugin.demo")
func Demo(Player sender, ArgList args)
{
sender.Message("Hello there! You said " + args.First());
}