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

    No, Bungeecord servers are separate from Bukkit servers.
  2. btk5h

    Addon Reqn

    Yes, that is the main purpose of this addon. You can check out the documentation for this effect here.
  3. btk5h

    Addon skript-mirror - skript-mirror 0.16.1

    Fix the matched pattern expression To be honest, the primary purpose of this release is to publish skript-mirror's new GitBook-based documentation. At this time, the documentation is still a work-in-progress and lacks documentation on some core features, but it's still better to have incomplete...
  4. btk5h

    Skript-mirror TRY STATEMENTS

    Skript-mirror's goal is not to port Java-specific language features to Skript. You can already suppress errors by prefixing java calls with try and use the last error to handle exceptions.
  5. btk5h

    Addon skript-json

    Locations (and some other classes) are serialized in a special way so that they can be restored later by skript-json. If you're using another plugin that needs locations in a different format, you will need to create the string yourself instead of storing a location.
  6. btk5h

    Addon skript-db

    There's nothing in last sql error?
  7. btk5h

    Addon skript-db

    Please post whatever errors you're getting.
  8. btk5h

    Addon skript-mirror - skript-mirror 0.16.0

    Disable missing and/or warning General improvements to property expressions Add version to english.lang (#68) Allow java calls to be used as conditions (#69) Fix syntax conflicts with other addons (#70)
  9. btk5h

    Addon skript-db

    Did you try setting the variable to type of event-block instead? This is not a bug. Skript's event-block refers to the live state of the block, not a snapshot of the block when the event was dispatched. You can see this by replacing the query with a delay. When you embed variables in a query...
  10. btk5h

    Addon skript-mirror

    Do you have more context?
  11. btk5h

    Addon skript-mirror

    You imported NametagAPI, not NametagEdit.
  12. btk5h

    how to make : on skript event ?

    You cannot listen to the SkriptStartEvent because Skript does not pass it through Bukkit's event manager. Use "on script load" instead. There is no way to listen to all events.
  13. btk5h

    Addon skript-mirror

    The import effect was changed into the import block. import: com.nametagedit.plugin.api.NametagAPI
  14. btk5h

    Addon skript-mirror - skript-mirror 0.15.0

    ⚠️ Breaking Changes Hey there! This should be the last massive breaking update until full release! (Unless we can remove the ! from field accessors) Java calls no longer use ; as a line terminator Fix custom expression return types Allow the loop-* of a plural expression to specified Add...
  15. btk5h

    Addon skript-mirror

    I'm not sure if this is skript-mirror's fault. It seems to be an issue with whatever gui addon you are using.
  16. btk5h

    Addon skript-db

    You'll have to convert your list into a single object when storing it in the database and convert it back when you retrieve it.
  17. btk5h

    Addon skript-db

    What are you trying to do?
  18. btk5h

    Addon skript-db

    Use %player's name% or %player's uuid% instead of '%player%'
  19. btk5h

    Addon skript-mirror - skript-mirror 0.14.1

    Fix issue with spreading Java objects
  20. btk5h

    Not downloading on Linux

    Try using forward slashes instead of backslashes. Backslashes only work on Windows whereas forward slashes will work on pretty much any operating system.