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

    Solved Another GUI inside the GUI

    change all loop player to player
  2. Killerz1243

    Solved Another GUI inside the GUI

    Don't use skquery for guis, use vanilla instead. Here's a tutorial on vanilla guis https://forums.skunity.com/threads/vanilla-guis.8939/ Also, periodicals can cause lag, so try not to use them, instead, you should use while loops on join: while player is online: wait 1 second...
  3. Killerz1243

    How cancel the drop of a specific item?

    what is the item you are trying to remove? For example, remove dirt named "hi" from drops
  4. Killerz1243

    Help with Vehicles

    I don't think you can set the yaw of the player directly, instead you would have to teleport them to rotate them
  5. Killerz1243

    Ban players last IP

    You forgot 'due to' ban {acip::%player's uuid%} due to "&cSAC Autoban &7| Reason: Hacking | Date %now% | If you wish to appeal please message a staff member"
  6. Killerz1243

    Solved Show nbt and metadata

    Try that loop all entities in radius {_blocks} of {_player}:
  7. Killerz1243

    Enchant gui

    Get the level of fortune on your pickaxe, then enchant it with a higher level https://skriptlang.github.io/Skript/expressions.html#ExprEnchantmentLevel https://skriptlang.github.io/Skript/effects.html#EffEnchant
  8. Killerz1243

    Solved When the player holds the item, execute the command (Help Me!)

    Don't use skquery for guis, it is buggy and items can be duplicated. You should learn vanilla guis as they are more efficient and less buggy. Heres an tutorial on vanilla guis. https://forums.skunity.com/threads/vanilla-guis.8939/
  9. Killerz1243

    How cancel the drop of a specific item?

    on death: remove ... from drops
  10. Killerz1243

    Help with the execute command

    What your code is executing is /execute as arrow run time set night and since no player online has that name, your code does not work.
  11. Killerz1243

    block 2 blocks below event-block

    use block 2 below event-block instead
  12. Killerz1243

    Help with the execute command

    Why not just set the time to night with the skript effect? https://skriptlang.github.io/Skript/expressions.html#ExprTime
  13. Killerz1243

    Loop all players sends it 1000 times! Help!

    Try not to use periodicals, instead, you should use while loops. Periodicals triggers unnecessarily and causes lag
  14. Killerz1243

    Solved What is obstructing my Automatic Notification?

    It's better to use while loops to check, periodicals trigger unnecessarily and causes lag. on join: while player is online: wait 6 seconds if player's gamemode is adventure: add 1 to {_x} send "{@prefix} Notice %mod({_x},6) + 1%" to player
  15. Killerz1243

    point system skript

    Please ask this in the requests section if you are not asking for help. https://forums.skunity.com/forums/requests/
  16. Killerz1243

    Solved I want to make a GUI Store

    1. You do not need a trigger in an event unless its a command 2. Your indentation is incorrect (line 4) 3. Do not use skquery for guis, as it is very buggy, you are better off using vanilla as it is more efficient and is less buggy. Here is a tutorial on vanilla guis...
  17. Killerz1243

    loop-block is not a location

    That's not possible, even if that is, your server would not be able to handle looping hundreds of millions of blocks Also, loop-value is an item and not a block when you do loop all blocks, meaning that you cannot get the location of it
  18. Killerz1243

    loop all players

    loop all players: is not an event https://skriptlang.github.io/Skript/events.html These are
  19. Killerz1243

    loop-block is not a location

    You are not specifying where the blocks should be looped at