Search results

  • 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 community!

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

  1. Pikachu

    Give player enchanted book with list variable for enchants

    I highly recommend against nbt and /give
  2. Pikachu

    Need help with skript-mirror (about NBT of an item)

    you don't even need skellett, vanilla has the same unbreakable %itemstack% you need to use semicolons when using java calls as effects
  3. Pikachu

    Addon skript-mirror

    Within the make gui tuske scope, the code is parsed as if it was an inventory click event. You have to set a local variable to the expression's value and use that.
  4. Pikachu

    Toast Addon

    it doesn't matter what the method returns -- that cannot be determined at parse time (unless you specifically specify the class where the method is, but thats almost never used). Because of that and how skript works, all java calls are assumed to potentially return any type including booleans.
  5. Pikachu

    Toast Addon

    You're already using skript-mirror so that's irrelevant. The syntax for custom effects is not hard to remember. For an effect you literally just need effect syntax: trigger: #code I fail to see how that is any harder than function syntax(): # code and custom syntax is documented fine for...
  6. Pikachu

    Toast Addon

    you did all that work but no custom effect?
  7. Pikachu

    Fix this sk

    why are you using subroutines
  8. Pikachu

    Addon skript-mirror

    import: com.live.bemmamin.gps.api.GPSAPI ch.njol.skript.Skript on script load: set {apis::gps} to new GPSAPI(Skript.getInstance()) expression GPS: get: return {apis::gps} on click: GPS.startGPS(player, "something");
  9. Pikachu

    Addon skript-mirror

    player doesn't even have a connect method.. this isn't even close to the right way so use BungeeAddon (its purely server side, no bungee installation needed) https://forums.skunity.com/resources/bungeeaddon.497/
  10. Pikachu

    Solved Gui

    use the format
  11. Pikachu

    I need help with shoot event

    Use the help format
  12. Pikachu

    Update Checker.

    use reqn not skutilities
  13. Pikachu

    Other Skript Obfuscation & Jar Encapsulation

    https://forums.skunity.com/resources/script-deobfuscator.526/
  14. Pikachu

    encrypt a skript

    https://forums.skunity.com/resources/script-deobfuscator.526/
  15. Pikachu

    encrypt a skript

    "encrypting" a script in any effective way is impossible
  16. Pikachu

    GUI items are slow to appear

    Use the help request format. Without knowing the addons you use and the script and such this thread is basically pointless.
  17. Pikachu

    How to make mob gardian beam

    the ability to set the location a guardian shoots at was added in 1 .9
  18. Pikachu

    How to make mob gardian beam

    what game version do you use
  19. Pikachu

    Step-by-step tutorial for Skript Packager

    no. don't use it.
  20. Pikachu

    Solved Offline player prefix

    imo you would be better off making an expression like this import: ch.njol.skript.hooks.VaultHook offlineplayer property offline prefix: get: return VaultHook.chat!.getPlayerPrefix(null and expr-1) to put a layer of abstraction between user and java