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

    On right click on text display or block display

    Hello! I need help with "On right click on text display or block display". I've tried a few things and they don't seem to work. Help if possible! (Thank you!) CURRENT CODE: on right click on entity: if entity is a block display: send "Clicked!" to player
  2. PixelCraft_I_D_K

    Help on Skbee's async chat event.

    on async chat: set {_m::1} to text component from "%player's prefix% %player%%player's suffix% &7» " set {_m::2} to "%async chat message% " set {_m::3} to text component from "&7[&cx&7]" add hover event showing "&cClick to remove this message" to {_m::3} set {_msg} to signed...
  3. PixelCraft_I_D_K

    blast enchant

    first of all, i have no idea why it says "? 0" there, you should change that to "to 0" anyways, you can use "if block below block is snow block" or "if block left of block below block is bedrock" or "if block north of block is iron block" etc. this might fix your problem
  4. PixelCraft_I_D_K

    If beacon is activated

    I've been skripting for a long time and I still can't get past the "if beacon is activated" obstacle. There is no way to tell in vanilla Minecraft anyway, and I can't seem to do it with Skript. Help if possible! :D
  5. PixelCraft_I_D_K

    Skript /team command (vanilla command)

    I did that, but the prefix only showed up in tab and in nametags
  6. PixelCraft_I_D_K

    Skript /team command (vanilla command)

    Hello! With the /team command in vanilla Minecraft, how can I use it to give players a chat prefix if they have a certain team in chat? I'm using: Vault, Skript, Skript-Mirror, Skript-Reflect Version: 1.21
  7. PixelCraft_I_D_K

    Solved Luckperms Groups

    yeah srry
  8. PixelCraft_I_D_K

    item display

    set last spawned item display to bone
  9. PixelCraft_I_D_K

    Solved Luckperms Groups

    /sk info There, I sent it..? (sorry im not familiar with this website)
  10. PixelCraft_I_D_K

    Help

    I recommend using the Citizens2 plugin and not using Skript for that. Though, you could make it where it can't step on anything but bedrock. on step: if entity is a zombie: if block is not bedrock: cancel event else: #continue This code is untested...
  11. PixelCraft_I_D_K

    Problem with setting the activation of mini-games alternately.

    The problem is that the line of code (12) isn't connected to anything. You should add an "on join:" or "on every (second/minute/tick/hour/day):" for Skript to know when to set {currentGame} to 1.
  12. PixelCraft_I_D_K

    Solved Luckperms Groups

    Hi there! I perfectly understand how to make LuckPerms groups, but it's not working on my version of Skript. I'm using the 1.21 version of Skript. I have the LP plugin and my server is 1.19. Everything should be working fine, however, it is not. I am using the set {group::%player's uuid%} to...
  13. PixelCraft_I_D_K

    ello

    ello
  14. PixelCraft_I_D_K

    Sound Overlap

    Here is my new code: command /thiscommanddoesnothingmusic: trigger: execute console command "stopsound %player% player" wait 1 tick execute console command "execute at %player% run playsound music_disc.cat player %player% ~ ~ ~ 999999999999999999" wait 136...
  15. PixelCraft_I_D_K

    Sound Overlap

    Well if I did play sound cat it wouldn't play to the player everywhere they went
  16. PixelCraft_I_D_K

    Sound Overlap

    My version is 1.19 by the way
  17. PixelCraft_I_D_K

    Sound Overlap

    Hi there! I'm trying to make an in-game music Skript where it loops the cat disc. I calculated the exact number of minutes the disc is (im using a texture pack) and when I play it in-game it works but the sound plays over itself. I can't figure out how this happens. Here is my code: command...
  18. PixelCraft_I_D_K

    Filter with list varialbe

    Hi! Sorry, but it's a tiny bit hard to understand you. May you rephrase that?
  19. PixelCraft_I_D_K

    How would I create a double damage effect

    Well first of all, if this is what you mean, you could use Minecraft's /damage command to your advantage to set the damage of the Warden Sword. Example: on damage: if attacker's tool is named "Warden Sword": execute console command "damage %victim% 5 minecraft:generic_kill by...
  20. PixelCraft_I_D_K

    Block's UUID in a variable

    Hi there! I was just wondering how you'd put a block's UUID inside a variable. I'm trying to give the block data (a variable) when right clicked on by a certain item. I have to use %block's uuid%, but that's not working. If I used %player's uuid% that wouldn't work either, since only admins are...