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

    stopping all loops

    https://forums.skunity.com/threads/stop-a-specific-loop.433/
  2. Sabified

    true or false command

    Add "solved" prefix if solved :)
  3. Sabified

    Help with setting spawn intervals on command with arguments

    i already gave it to you in the other post tho https://forums.skunity.com/threads/help-with-setting-spawn-intervals-on-command-with-arguments.16217/
  4. Sabified

    Solved loop all player near players what have the scoreboard tag "Z":

    every 15 seconds: loop all player: if player have the scoreboard tag "Z": execute loop-player command "yourcommand"
  5. Sabified

    stop all sounds

    There is no syntax for it stop sound[s] %strings% [(in|from) %soundcategory%] [(from playing to|for) %players%] stop playing sound[s] %strings% [(in|from) %soundcategory%] [(to|for) %players%] stop all sounds doesn't exist (yet) in skript but you can stop specific sounds I think I found a...
  6. Sabified

    tooltip link bug?

    duplicate post :/
  7. Sabified

    Solved Pull ability

    What would the enemy be? Another player or a mob?
  8. Sabified

    tooltip link bug?

    You probably forgot a trigger The code needs to be told when to run Example: If you want it to run every 10 minutes: every 10 minutes: broadcast "%nl%[✦] <tooltip:click><link:https://mylink.com>&6click to join our discord server!%nl%" If you want it to run every time a player joins: on join...
  9. Sabified

    Help with setting spawn intervals on command with arguments

    this is a duplicate post :/
  10. Sabified

    Solved Help with setting spawn intervals on command with arguments

    we meet again ;) function DropBerries(): drop 1 sweet berries at location(4352.5,97,4137.5, world "world") without velocity drop 1 sweet berries at location(4352.5,97,4131.5, world "world") without velocity drop 1 sweet berries at location(4357.5,97,4131.5, world "world") without...
  11. Sabified

    Solved How can I get the name of an item in skript?

    Hello! I want the name of player's tool If I try to do set {_item} to player's tool set {_itemName} to name of {_item} It returns <none> because the item isn't "named" eg. with an anvil To anyone who might want this in the future: function getItemName(i: item) :: string: if {_i}'s name is...
  12. Sabified

    Solved loop all player near players what have the scoreboard tag "Z":

    Could you explain? I don't really know what you want to do
  13. Sabified

    How to loop all raw items

    on pick up: send "&7Vzal jsi %event-item%!" to player if {ir::%player%.%raw name of item%} is true: stop else: set {ir::%player%.%raw name of item%} to true play sound "entity.experience_orb.pickup" with volume 0.5 to the player add 1 to {ir::%player%}...
  14. Sabified

    Solved Help with counting handheld items

    on rightclick on a stone button with brick: if name of player's held item is "&cRusty Scrap Metal": send "&aCleaning The Rust" to player send "&bWait 5 Seconds Before It Is Clean!" to player set {_count} to amount of player's held item in player's inventory...
  15. Sabified

    Solved Help with custom commands and loop dropping items

    Add the solved prefix if that was everything :emoji_wink:
  16. Sabified

    Solved Help with custom commands and loop dropping items

    command /dirt: permission: op trigger: if {dirt.enabled} is true: set {dirt.enabled} to false send "&cDirt spawner disabled" to player else: set {dirt.enabled} to true send "&aDirt spawner enabled" to player every 2...
  17. Sabified

    Solved Creative inventory

    You could just loop through all players and remove the items you don't want the players to have..
  18. Sabified

    how to disable the <%player%> in chat with skript

    on chat: set the chat format to "%player's prefix% %player% %message%"
  19. Sabified

    /clone in skript

    It works for me though Try updating skript
  20. Sabified

    /clone in skript

    execute console command "/clone 561 4 -815 566 11 -812 946 28 -620" Like this?