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 comminuty!

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

  1. xL8jNor

    Skript and Craftbukkit interference

    Use Spigot
  2. xL8jNor

    Please help me fix this

    You may want to register your variables with "variables:" not "options:" and you should stop using id based item. (+ you can actually give item with Skript so I replaced the /give line) Here is the fixed code: variables: {lada::1} = 8 Golden Apple {lada::2} = Potion of Strength...
  3. xL8jNor

    Solved Ok so how do I do this?

    You could do it like that: set {_s} to now formatted as "YYYY-MM-dd" send "%{_s}%"" You can get all date format at: https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
  4. xL8jNor

    Solved Chest Gui Help

    You can only edit the size of a chest inventory. For exemple, you can't modify the size of a hopper or dispenser gui And sadly, you need to have 9 rows atleast for a chest inventory so, you can't do 3x5
  5. xL8jNor

    Solved Chest Gui Help

    Check this link to get all Inventory types: https://skripthub.net/docs/?id=2151 (I think you can almost open all Inventory types if the addon you use support it)
  6. xL8jNor

    Solved Chest Gui Help

    You can open all types of inventory (Chest, Hopper, Dispenser, Furnace, Crafting Table, ...) (If you really want 3 slots in the same line you could also try the Dispenser :emoji_slight_smile:)
  7. xL8jNor

    Solved Chest Gui Help

    The minimum size for a chest is 1 row (1x9) If you want something lower you can have 1x5 (Hopper) And I use skript-gui to do my inventory, you can open a virtual hopper like that: create a gui with virtual hopper inventory open last gui to player
  8. xL8jNor

    Solved Colored leather armor

    Yes, like that: set legging of the player to {_h} named "Custom name" Mark this as resolved :)
  9. xL8jNor

    Solved I need help with particles (skDragon)

    Hi! You could do it like that: (Im pretty sure you can do it without variable but this one is working) set {_loc} to location of targeted block drawSphere style 1, particle "cloud", center {_loc}, id "%player%.esferajett1", rainbowMode true, radius 2.5, density 999, visibleRange...
  10. xL8jNor

    Solved Colored leather armor

    Hi, you could try this one: command test: trigger: set {_h} to Leather Pants dye {_h} gray # Or RGB value enchant {_h} with protection 2 set legging of the player to {_h}
  11. xL8jNor

    Scoreboard Hex Colors

    Refering to this issue: https://github.com/SkriptLang/Skript/issues/3112 I think you can only use hex/rgb in chat message for now
  12. xL8jNor

    problem with skript plugin

    Hi, you should update some of your plugins Skript: https://github.com/SkriptLang/Skript/releases/tag/2.5-alpha6 SkQuery: https://forums.skunity.com/resources/skquery-1-9-1-16.68/ "CustomPayloadFixer" is not loading because you actually need ProtocolLib to get it working so you should download...
  13. xL8jNor

    Solved Clickable text

    Here you go: command discord: trigger: send "&7&lFor the link >><link:https://discord.gg/7QRvtyK>&6&lClickHere&7&l<reset><<" to sender You can get all text format here: https://skriptlang.github.io/Skript/text.html