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

    Solved Colored dust

    Tell me - how to make redstone redstone dust in different colors? The code does not work (I found documentation about this from 2017) show 25 colored dust with speed 0.05 on {_enter} with colors 100, 100, 100
  2. V

    Solved How can I prohibit the use of a player's inventory when a custom inventory is open?

    Using the guide: https://forums.skunity.com/threads/vanilla-guis.8939/ created inventory, they use a ban on the use of inventory slots through cancel event. Problem: The player can move items in his inventory, and what's the worst thing is to make a font + left mouse click, and the item will...
  3. V

    Ability to climb walls

    Question: how to implement the ability to climb walls for the player (like spider mode)
  4. V

    Crash on add skript from test server to miain

    Tell me what could be? I check everything works fine on the test server, I transfer it to the main one, when adding a person, it freezes and crashes. Lastest log
  5. V

    Grindstone - disable exp drop on disenchant

    Help. How to disable (remove) experience orbs when disenchanting items in grindstone?
  6. V

    Solved On break block genered naturally or placed players

    Help, I ran out of ideas on how to implement this... How to check if the block that the player broke was placed by the player or appeared naturally? on break: if event-block is coal ore: (and how to check, I don't know, help me plz)
  7. V

    Solved How to create item database in skript yaml?

    Question. How to make the item saved. Or rather, its type, name, lore. maybe there were already similar requests, but I did not find them ...
  8. V

    How to use PlaceholderApi conditions in Skript?

    I use Skellett, un config edit placeholderApi to true. But placeholder's not work, plz hel me, where i wrong? command /me1: trigger: set {_tps} to placeholder "%%server_tps%%" set {_server_max_players} to placeholder "%%server_max_players%%" set {_server_uptime} to...
  9. V

    Solved How to disable anvil rename?

    Plz help! Me needed disable anvil rename(recomended) or disable opened anvil GUI... How can I do that?
  10. V

    Solved WG region create

    I see theme: How to create a WG region from player's location? https://forums.skunity.com/threads/how-to-create-a-wg-region-from-players-location.4158/#post-13877 For some reason, the code given there does not work for some reason. Can help or tell how to change: command...
  11. V

    Solved How to edit skript clicked block to coordinates x,y,z

    I use skript Area Manager. But me needed set {zPOS1} and {zPOS2} need to specify the coordinates x,y,z #EVENT on left click: if player's tool is diamond hoe named "&f[&bArea Manager&f]": cancel event set {zPOS1} to location of clicked block send "&bPos1:&f...
  12. V

    Solved On death of custom named entity

    Help, how to do: How to track what an entity with a custom name is dying? My attempts: on rightclick on entity: if name of entity is "&2Skeletal Knight": //work broadcast "+1" on death: broadcast "-1" if name of entity is "&2Skeletal...