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

    Solved can someone check if this would work

    Nop, this would not work. But this would: on join: while player is online: if ping of player is more than 800: kick player due to "Your ping is higher than the maximum allowed (%ping of player%ms > 800ms)" wait 1 second
  2. Minecoll_YT

    Solved Is there a way to break stone with fortune and get the fortune blocks?

    This is the simplest way I could think of while still using the normal minecraft drop values:
  3. Minecoll_YT

    I don't understand converting an expression and loop to 1.16

    Split it up and try again. So instead of loop size of {_rtr::*}+1 times use set {_size} to size of {_rtr::*} add 1 to {_size} loop {_size} times:
  4. Minecoll_YT

    Skript Help - Shotgun Skript With Distance

    And list variables too :)
  5. Minecoll_YT

    Solved Is there a way to break stone with fortune and get the fortune blocks?

    on break of stone: if tool of player is enchanted with fortune: cancel drops set {_amount} to 1 if level of fortune of player's tool is 1: chance of 33%: set {_amount} to 2 if level of fortune of player's tool is 2...
  6. Minecoll_YT

    Make Player Walk

    I don't think that's possible, you can teleport the player really fast, but it's not as smooth as walking
  7. Minecoll_YT

    TuSke addon issue

    Btw. use skript-guis or VanillaGUIs
  8. Minecoll_YT

    Server delete list variables by itself

    Look out for errors in console on shutdown. But it would be way better if you would at least provide some information... like the examples that can be found in the "Help Request Layout"
  9. Minecoll_YT

    Heart Shop in minecraft 1.16.5

    Thats something for script requests
  10. Minecoll_YT

    Solved Amount of blocks within 2 locations without loops?

    maybe something like set {_count} to amount of all blocks within ...
  11. Minecoll_YT

    Creating GUI in 1.8.8

    Please don't use SkQuery :/
  12. Minecoll_YT

    Need help

    remove 200 from {strength.%player%} And use list variables instead of normal ones
  13. Minecoll_YT

    Gun

    1. Use list variables instead of normal ones 2. For stuff like this use metadata, there are some tutorials using SkBee on here 3. It does its normal stuff, because it's still a wither skull. 4. You can add a cooldown using this example: on rightclick: if difference between now and...
  14. Minecoll_YT

    How do I make this skript work

    on break of iron ore: player is holding a wooden pickaxe: if level of efficiency of player's tool is greater than or equal to 10: give iron ingot to player stop cancel event send "&4§lUpgrade your pickaxe with /merchant to mine this" to player
  15. Minecoll_YT

    Solved [DE] Skript Vars

    "add 1 to {var}" ist richtig, dass ganze funktioniert nur nicht wenn, wenn es eine Liste ist.
  16. Minecoll_YT

    Problem getting Item Script to work

    ohoh... please don't use variables for item specific stuff. To create custom enchants, you can use TuSKe. If you don't want to use that, use metadata for stuff like this. There are some tutorials on here with SkBee.
  17. Minecoll_YT

    How Do I Know What World The Player Is In

    if player is in world "world"
  18. Minecoll_YT

    Players without op can't use a command with no required permissions

    Not sure what you mean, there is no check if the player has a permission. And SkQuery GUIs are a big no, convert Vanilla GUIs. For stuff like this you better use functions, for example: function shop(p: player, category: text): if {_category} is "main": # do your category stuff...
  19. Minecoll_YT

    PAPI Skript addon

    https://forums.skunity.com/resources/skript-placeholders.909/
  20. Minecoll_YT

    How can I give a Item from GUI to player (SkQuery)

    Vanilla GUIs or at least skript-gui for the win!