Solved Vectors in 1.12

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.
you need to make a own jar with the next code

Java:
package io.github.bi0qaw.vectorskript;



import ch.njol.skript.Skript;

import io.github.bi0qaw.vectorskript.vector.VectorRegister;

import io.github.bi0qaw.vectorskript.vector.VectorType;

import org.bukkit.Bukkit;

import org.bukkit.plugin.java.JavaPlugin;



public class VectorSkript extends JavaPlugin {



    private static VectorSkript plugin;

    public static boolean RandomSk;



    @Override

    public void onEnable() {

        plugin = this;

        Skript.registerAddon(this);

        RandomSk = Bukkit.getPluginManager().getPlugin("RandomSK") != null;

        if (!RandomSk) {

            new VectorType();

        }

        new VectorRegister();

    }



    public static VectorSkript getPlugin() {

        return plugin;

    }

}
 
you need to make a own jar with the next code

Java:
package io.github.bi0qaw.vectorskript;



import ch.njol.skript.Skript;

import io.github.bi0qaw.vectorskript.vector.VectorRegister;

import io.github.bi0qaw.vectorskript.vector.VectorType;

import org.bukkit.Bukkit;

import org.bukkit.plugin.java.JavaPlugin;



public class VectorSkript extends JavaPlugin {



    private static VectorSkript plugin;

    public static boolean RandomSk;



    @Override

    public void onEnable() {

        plugin = this;

        Skript.registerAddon(this);

        RandomSk = Bukkit.getPluginManager().getPlugin("RandomSK") != null;

        if (!RandomSk) {

            new VectorType();

        }

        new VectorRegister();

    }



    public static VectorSkript getPlugin() {

        return plugin;

    }

}

I don't know what I should do.
 
I don't know what I should do.
You can click this button:
upload_2017-6-13_18-46-25.png


And get the compiled jar there:
upload_2017-6-13_18-50-6.png


Although all these features has been merged to vanilla Skript on the dev28 of the bensku's fork (a fork for 1.9 and up servers):
https://github.com/bensku/Skript/releases
 
Status
Not open for further replies.