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

    Need help with spawn "cooldown"

    made it so the player cannot move at all when in the respawn delay and added a little optimization. on respawn: set {respawncooldown::%player's uuid%} to 10 set {stoped::%player's uuid%} to true apply potion of blindness of tier 255 without any particles to player for 11 seconds...
  2. M

    Help with block regeneration

    use perlin noise, it work pretty well and you can find a good example with a little googling. also to set blocks set block at location(50, 50, 50, "world") to dirt <-- should work or if you just want to modify this (may or may not work, I have not tested it yet) command /goldterrain...
  3. M

    Offering Boat Step Up Skript?

    umm why not just use BoatUtils or OpenBoatUtils.
  4. M

    Can someone please help

    try apply potion of strength of tier 2 to the victim for 2 seconds
  5. M

    Can someone please help

    are you sure the potion effect is given? like testing with another player.
  6. M

    Tracking whether player open their own inventory

    ooohh right i will try and find another event
  7. M

    Can someone please help

    are your items named right? and do you get your debug message?
  8. M

    Tracking whether player open their own inventory

    i have not tested this in a server environment but it should work on load: set {list::*} to "" set {LargestNum} to 0 on pick up: if player has enough space for 1 air: set {item} to event-item command /getitems: trigger: loop (size of {list::*}) times...
  9. M

    Hiring MC Server Project - Looking for developers!

    Hello Olliepoke, i am willing to offer my services in helping you develop your server and i am a decent skript dev. also i do not have discord.
  10. M

    Tracking whether player open their own inventory

    what do you need it for. there are other events that can be used in place of a on inventory open: line
  11. M

    I need a skript that auto compresses items with gradients and lore but nothing works

    try this, it passed the Parser and i changed a little bit of the variable definitions on mine of iron ore: if player is holding compass named "&fIron AutoCompressor" in off hand: set {_amountIron} to number of iron ore in player's inventory loop {_amountIron} / 32 times...
  12. M

    Optimizing item removal code.

    what do you currently have?
  13. M

    Chestplate slot behaves differently than regular slot

    oh if it is in the chestplate slot that is different, when clicking on it somewhere else it "swaps" the item but the chestplate slot cannot do that with the carrot. I believe.
  14. M

    Set a command block's command.

    wait so you want it to make a block of the block that was clicked? also I believe that command blocks may work better because they will still run after a server reset, I am not sure if a list will be saved permanently. command /genstick: permission: op permission message: &r&fUnknown...
  15. M

    Loop bug?

    it would be nice
  16. M

    how to make two players share 1 inventory

    I tryed to make it work but I cant get the loops to work so it is 100% possible and will only take time what I have so far: <---not tested in server environment---> on load: {shared_inventory::player1} = none {shared_inventory::player2} = none command /shareinventory <player>...
  17. M

    Loop bug?

    is this a snippet from a file? or the full prodject
  18. M

    Parse PlaceholderAPI into skript

    did it fix your problem?
  19. M

    Parse PlaceholderAPI into skript

    ok, then try on inventory click: if event-slot is helmet: cancel event if event-slot is chestplate: cancel event if event-slot is leggings: cancel event if event-slot is boots: cancel event