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

    block placed is chest??

    on block place: loop all blocks around event-block in radius 3: if loop-block is chest or trapped chest: send "chest" something like this, didnt test
  2. xdh

    Skript Console Error

    does the world "maptest" exist?
  3. xdh

    Help for skript creative item detector

    on inventory click: if type of event-inventory is creative inventory: cancel event send "No." Might work, didnt test it
  4. xdh

    How to make a Scale(List)

    make a integer variable, and increase, and decrease on that scale, because you're not being specific enough idk if this what you want.
  5. xdh

    variable in option

    It might be because you can't pass through a player variable, so %uuid of player% literally has no mean because their is no "player" in the option, just make a variable instead of using an option
  6. xdh

    Solved Compare question

    I apologize for the late reply, I completely forgot! I have great news! I have found your issue function moneyoptionclick(p: player, n: number, item: text, price: number): Your issue is in the item variable, because you're trying to compare an itemtype with text, now if you were to change it...
  7. xdh

    Solved Compare question

    I'll test it out tomorrow and I will let you know.
  8. xdh

    Solved Compare question

    I tested out this code, and it works, so your issue might be with detecting the inventory itself, you might want to switch to metadata instead of name of the inventory here is a tutorial about metadata. However if you still choose to use the name, send the code of the inventory as well, because...
  9. xdh

    Solved Around saved varriable

    untested command /covertrack: cooldown: 1 seconds cooldown message: Ждите &c%remaining time% &fсекунд! trigger: add block under player to {track::*} command /inspect: cooldown: 1 seconds cooldown message: Ждите &c%remaining time% &fсекунд! trigger: loop...
  10. xdh

    Minecraft Skript code custom amount of special iteam

    Hey, first thing you probably would want to make the variable exclusive to each player's UUID, like this: set {coins.%uuid of player%} to player's tool so that each player has a separate amount of coins, and second thing, in the command, you need to pass a player variable, so the command would...
  11. xdh

    Solved Help With autoCompress skript

    well thats something you should do, and if you encounter errors, you can come make ask for help here ;-
  12. xdh

    Cubecraft TNT cannon mechanic

    I'm pretty sure thats normal minecraft tnt, if you're talking about the cannon
  13. xdh

    Hey, someone know whats wrong with this code?

    to get help please use a code block fine ill be nice this time, 'trigger' is only used once in the command, there is no need to trigger the code again
  14. xdh

    Solved Help With autoCompress skript

    every second: loop all players: if loop-player's offhand tool is stone named "&f&lIronAutoCompressor": if loop-player has 32 iron ingot named "&dCompressed iron ingots": set {_n} to number of iron ingots named "&dCompressed iron ingots" in loop-player's...
  15. xdh

    Solved Help With autoCompress skript

    Spoon feeding time Quick explanation, your syntax is wrong skript doesn't recognize loop-players offhand what it can read is loop-player's offhand tool and when in a periodical event, such as "every {x} second/tick", you can't use 'player' because there is no specific player, here and to get...
  16. xdh

    Solved Need help with variables

    I've never seen anyone make commands without the '/' before the command name, that might be your issue idk
  17. xdh

    Solved Compare question

    you're calling a different function when the player clicks the item?
  18. xdh

    Set inventory slot deletes current selected item

    on inventory click: if player doesn't have permission "op.op": if name of event-item is "&cClosed": cancel event add this, regarding your issue contact me on discord after the 16th if you didn't find a solution yet, I tested out the skript and it worked perfeclty for me...
  19. xdh

    +1 Y coordinate in variable

    mark it as solved ;-)
  20. xdh

    Set inventory slot deletes current selected item

    I don't really understand what's going on, but if i had to guess it might be because you're updating the player's inventory every 0.1 seconds so it resets the item that is 'picked' try to decrease the timer and check idk tbh