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. btk5h

    Addon skript-mirror - skript-mirror 0.3.1

    Make the "java" in the typeof expression mandatory
  2. btk5h

    Other Advanced date formatting with skript-mirror

    Skript doesn't offer much support for date formatting. Fortunately, Java provides advanced support for date formatting through String#format. Let's access it using skript-mirror! This tutorial is friendly to users playing around in the server console. Because none of the following examples...
  3. btk5h

    Addon skript-mirror - skript-mirror 0.3.0

    ⚠️ Breaking Changes Java calls no longer accept multiple target objects Added error handling and a try expression to suppress errors
  4. btk5h

    Other Embedding Java code in Skript with skript-mirror

    Although Skript and its addons wrap many of the essential utilities from Java and Bukkit, some projects have special requirements that utilize features not yet been implemented by addons. One of the features of skript-mirror is the ability to call arbitrary Java methods and fields, effectively...
  5. btk5h

    Addon skript-mirror - skript-mirror 0.2.0

    Expanded import syntax Fixed a bug where events and java classes could not be used as types Fixed issues with methods returning arrays Added expressions for listing the members of objects and java types Added an expression for getting the java class of an object
  6. btk5h

    Addon skript-mirror

    btk5h submitted a new resource: skript-mirror - Natural reflection utilities for Skript Read more about this resource...
  7. btk5h

    Addon skript-mirror 0.19.1

    Documentation | Source | Releases Quickstart import: java.lang.System java.lang.String as JavaString java.lang.Math org.bukkit.Location command /reflectiontest: trigger: System.out!.println("Hello from Skript!") sender.sendMessage("Reflection message!") message...
  8. btk5h

    Addon skript-json - skript-json 1.1.0

    Non-standard types are now serialized into valid JSON. Locations will be decomposed into a JSON object with keys describing the location. All other types will be serialized using Skript's serializer and stored in base64.
  9. btk5h

    SUCC

    SUCC
  10. btk5h

    Skript Skript Addon Best Practices

    This tutorial was written to help explain Skript's poorly documented API and to promote quality standards for Skript addons. This tutorial is a work-in-progress and will be updated frequently. Feedback is appreciated. Limit the scope of your addon Addons should solve a single problem...
  11. btk5h

    Addon Reqn - Reqn v1.2.0

    Changelog The header syntax is now optionally singular, which should make the request syntax less awkward to use with only one header. Responses compressed with GZIP or DEFLATE will now be properly decompressed when received. "Accept-Encoding: gzip" should be specified in the request header to...
  12. btk5h

    Addon skript-json

    btk5h submitted a new resource: skript-json - Seamless JSON integration for Skript Read more about this resource...
  13. btk5h

    Addon skript-json 1.1.0

    Handle JSON objects using list variables. This addon was originally designed to work with Web APIs that use JSON for input and output, but it will also work well in any situation that requires parsing and serializing JSON. Documentation/Source - Releases Quickstart set {_input} to "{""age""...
  14. btk5h

    Addon Reqn

    btk5h submitted a new resource: Reqn - Properly implemented web requests for Skript Read more about this resource...
  15. btk5h

    Addon Reqn 1.2.1

    Reqn is an HTTP request library for Skript 2.X. Documentation/Source - Releases Quickstart # Send a get request to a url. The protocol (http or https) is required. send a request to "http://example.com" # Send a request using a different HTTP method. send a "put" request to...