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 comminuty!

    Now, what are you waiting for? Join the community now!

  1. B

    if loop-block is observer. Only accepts if its facing up

    block's material returns the block type material when you place a block it's rapresented by type and material type is like "westfacing blablabla" rapresenting the whole range of the block material is like the class an item belongs to so for a placed observer material will be "OBSERVER" and type...
  2. B

    Set block at a specific coordonate

    location (x, y, z) set block at location (0, 0, 0) to block
  3. B

    if loop-block is observer. Only accepts if its facing up

    use loop-block's material!
  4. B

    Emerald Armor

    if you're using skript dev31 up you can use just "dyed green" skript +dev26 you can use (dye|colo[u]r|paint) %itemtypes% %color%
  5. B

    CLOSE/OPEN Server at 10pm / 2am

    So... never tested this out but there's a skript addon that allows you to execute files (so like .bat and so on), if your server is a bungeecoord server, i think you can put Skent in the plugins and code a script that at 10pm make the server stops, at 2pm make the bat (if it is) execute and load...
  6. B

    Random entity

    you're welcome!
  7. B

    Random entity

    You can't generate something from nowhere, if you want to set a variable to a random entity you have first to add all the types of entity you want to a list. after done this you have to set the variable to a random object out of the list and parse it as entity type. Example: add "zombie" to...
  8. B

    Solved What version of SkQuery use 1.8.8

    you have to replace "item" with your item .-.
  9. B

    Solved What version of SkQuery use 1.8.8

    oh nono, the format slot has another sintax. for the set slot you can use this : set slot SLOT of player's current inventory to ITEM named "NAME" with lore "LORE". # the 'cancel event' for the set slot on inventory click: if inventory name of player's current inventory is "NAME OF...
  10. B

    Solved What version of SkQuery use 1.8.8

    You're code is wrong. You can't use "to be unstealable" with skquery's sintax. You maybe wanted to use "format slot" instead of "set slot" i think you're versione is right.
  11. B

    Online factions members with head in gui

    set the player to a variable parsed as offline player then check if the player (using the variable) is online: if he is online set the slot to skull of {_Variable parsed as offline player} and set the lore or what you want aso nline, else offline code should be like this: set {_p} to...
  12. B

    Online factions members with head in gui

    try set {_p} to player parsed as offline player
  13. B

    Silent Vanish Help

    i think that you should put the "loop all players" in the if player has permission section... on join: if player has permission "join.silent": set join message to "" loop all players: if loop-player has permission "join.alert": message...
  14. B

    simple block event to inset renamed item on grindstone

    Inventory action is not an event!
  15. B

    simple block event to inset renamed item on grindstone

    Use inventory action. you can use all this types as a condition : nothing, pickup all, pickup some, pickup half, pickup one item, place all, place some, place one, swap with cursor, drop all from cursor, drop one from cursor, drop all from slot, drop one from slot, instant move, hotbar move...
  16. B

    simple block event to inset renamed item on grindstone

    It is because the 'event-item' return <none>.. the unique method is the 'clicked item' (i think) (Tested on 1.12.2)
  17. B

    simple block event to inset renamed item on grindstone

    Oh.. Replace "clicked item" with "event-item"
  18. B

    simple block event to inset renamed item on grindstone

    have you got skellet?
  19. B

    simple block event to inset renamed item on grindstone

    First point : skript is not javascript! (need skellet) try this : on inventory click: if player's current inventory's type is grindstone inventory: if clicked item is an enchanted book: cancel event
  20. B

    Auto Updater

    You can use SkUtility's effect download file from "url" to file "plugins\skript\scripts\yourscript.sk"