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

    Is there play raw sound or sound

    https://skriptlang.github.io/Skript/effects.html#EffPlaySound You need at least 2.2 dev-28 to use the play sound effect in vanilla, not sure about other addons that might be able to do this tho
  2. Killerz1243

    loop-block is not a location

    drop 1 carrot at location of loop-block
  3. Killerz1243

    Acid Rain?

    try it :)
  4. Killerz1243

    Acid Rain?

    if y coordinate of highest block at player's location < y coordinate of player: #code
  5. Killerz1243

    Do a "loop blocks" on a chunk

    - try chunk at event-block - multiply the chunk location by 16 to get the coordinates
  6. Killerz1243

    Acid Rain?

    check if the y coordinate of the highest block is lesser than the y coordinate of the player
  7. Killerz1243

    if player is in world: give effect

    go to https://forums.skunity.com/forums/requests/ if you want someone to create a skript for you
  8. Killerz1243

    Forbid fly in region!

    wrong place m8 https://forums.skunity.com/forums/requests/
  9. Killerz1243

    Solved command

    if arg-1 parsed as an offline player is online: try that
  10. Killerz1243

    Solved Set Tool Unbreakable

    hmm weird set {_x} to iron pickaxe named "&7&lMining Pickaxeı" with lore "&3Example" give unbreakable {_x} to player
  11. Killerz1243

    Solved Set Tool Unbreakable

    what is your skript version?
  12. Killerz1243

    Solved Set Tool Unbreakable

    Oh, I didnt see your question just now. give 1 unbreakable iron pickaxe named "&7&lMining Pickaxeı" with lore "&3Example" to player That should give you an unbreakable iron pickaxe
  13. Killerz1243

    Solved Set Tool Unbreakable

    Are there any errors? if so, what are they?
  14. Killerz1243

    Play Sound at victim Problem

    try the code below instead on damage: if victim is a player: play sound "ENTITY_BLAZE_HURT" with volume 20 and pitch 1 at victim
  15. Killerz1243

    Check GUI name

    you can use 'name of inventory' to find the name of the GUI as for finding which item is in a certain spot broadcast "%slot 10 of player's current inventory%"
  16. Killerz1243

    Need help with setting locations

    teleport player to block 25 below player You could do this instead
  17. Killerz1243

    Suppress message

    on skript load: while true: wait 1 hour add 1 to {_a} if mod({_a},2) is 0: broadcast "The Airdrop has landed" else: broadcast "The Airdrop will land in one hour" requires a server restart to get it working
  18. Killerz1243

    Server Sided AntiKB, Reach

    For antiKB, on damage: cancel event damage victim by damage
  19. Killerz1243

    Solved Level Limit

    try cancel event instead of remove 1 exp level from player
  20. Killerz1243

    Solved add (random number) apple to {chestitem::*}

    add random integer from 1 to 64 of apples to {chestitem::*}