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

    Solved How to detect time since sleep event?

    You could use on bed enter:, set a variable at that time and then use the difference between that variable and now to see how long it has been. Although on bed enter won't tell you if they have slept, just that they've been in bed.
  2. BaeFell

    I'm Poppy

    I'm Poppy
  3. BaeFell

    Sell skript

    Double-check that name of loop-item isn't actually an empty string. Try holding a diamond and doing something like this: command /test: trigger: if name of tool of player is "": message "name is empty" if name of tool of player is not set: message "name is not set"
  4. BaeFell

    Solved TuSKe GUI not working

    Yup :)
  5. BaeFell

    Solved TuSKe GUI not working

    TuSKe is out of date. You should use the GUI syntax built into Skript: https://docs.skunity.com/syntax/search/addon:skript%20inventory
  6. BaeFell

    Script [Deleted] skUnity Testing

    BaeFell submitted a new resource: skUnity Testing - Testing, please ignore Read more about this resource...
  7. BaeFell

    Hiiii

    Hiiii
  8. BaeFell

    Just donated :D

    Completely missed this thread! Sorry for being so late. Thanks for your donation and support! We'd love to hear any feedback you have. Drop me a PM if you've got any ideas. Thanks again!
  9. BaeFell

    Solved How to check if a player enchant a pickaxe

    on enchant prepare: if event-item is any pickaxe: cancel event That may work, not sure.
  10. BaeFell

    Solved how to use Function(%player%)

    function example(player: player): send "hi there!" to {_player} on inventory click: example(player)
  11. BaeFell

    Solved stop mobs following player

    use event-entity instead of player for the permission check. I think that should work.
  12. BaeFell

    Solved Format slots in ListGUI misses Icons and Cmds's Args

    Closed at authors request.
  13. BaeFell

    Addon skript-debug

    BaeFell submitted a new resource: skript-debug - Easily and quickly share vital information to get help quicker Read more about this resource...
  14. BaeFell

    skUnity Official skript-debug 1.0

    skript-debug by skUnity What is skript-debug? Continuing on with skUnity's mission to provide unique, useful and the best development tools for Skript, we're happy to announce the release of skript-debug! skript-debug is a brand new tool created by skUnity to help users share the error they're...
  15. BaeFell

    Official Searching the skUnity Docs

    Searching the skUnity Docs The skUnity Docs features a powerful search that lets you easily refine your query. This tutorial will teach you how to effectively search the skUnity Docs. You can refine your search on the skUnity Docs by: Specific addon including Skript What category of syntax...
  16. BaeFell

    skript-debug by skUnity

    skript-debug by skUnity What is skript-debug? Continuing on with skUnity's mission to provide unique, useful and the best development tools for Skript, we're happy to announce the release of skript-debug! skript-debug is a brand new tool created by skUnity to help users share the error they're...
  17. BaeFell

    Official Welcome to Skript

    Skript - Swiss Made, Community Driven Welcome to Skript Terminology clarification: Skript = the plugin/project itself (Skript.jar/Skript) Script = a script file (script.sk/script) Skript is an English based programming language for Minecraft that runs on Bukkit/Spigot/Paper (and other...
  18. BaeFell

    Solved How to remove decimal remainder from a number

    You could try: set {reb} to ({reb}/3) parsed as integer Which might drop the decimals or fail miserably.
  19. BaeFell

    looking for scripters

    You can just report threads that are in the wrong place so we can move them :). Thanks!
  20. BaeFell

    Variables don't check other variables???

    You're comparing an integer and a string. Remove the speech marks and percentage signs and it should work. You could also try using "is greater than" as well. Sometimes Skript's syntax can be a bit iffy.