Recent content by PixelCraft_I_D_K

  • 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

    Cant make skBee work

    The issue is what you're specifying for your nbt. It's easy to fix. Here is your fixed Skript :) set nbt-block at player to west facing furnace with nbt "{CustomName:"" ""{\"" ""text\"" "":\"" ""&aFurnieFurnace\"" ""}""}"
  2. PixelCraft_I_D_K

    Solved Check if player is holding any armor piece

    Hey! It doesn't take much effort to just do this. on right click: if player's tool is a chainmail chestplate or chainmail helmet or chainmail leggings or chainmail boots or leather helmet or leather chestplate or leather leggings or leather boots or golden helmet or golden chestplate or...
  3. PixelCraft_I_D_K

    Estoy intentando crear este sistema para un bar, pero no puedo lograr que los villager aprezcan automáticamente.

    ¡Hola! La mayoría de las personas en este sitio web hablan principalmente inglés, así que podrían entender y responder si usas un inglés claro. Yo ayudaría, pero no puedo entender completamente tu código usando traductor de Google
  4. PixelCraft_I_D_K

    Change Biome of World

    You can do this using worldedit (//setbiome) and console commands. (example: execute console command "execute at %player% run execute as %player% run //setbiome (biome)")
  5. PixelCraft_I_D_K

    Inventory Saving

    Works for me. What Skript plugins (addons) do you have?
  6. PixelCraft_I_D_K

    player nametags

    You can set a custom name tag using the TAB plugin and automatically executing a command to change the player's name tag. execute console command "tab player %player% customtabname (name)"
  7. PixelCraft_I_D_K

    Remove player from chat recipients help

    The following is possible, and works efficiently, though the whole "using a command to detect something from a player" is a little controversial around the Skript community on chat: if world of player is "event": cancel event make all players execute command "chatscan"...
  8. PixelCraft_I_D_K

    Read console message

    Hello! Unfortunately, this isn't possible, and it never will be. Nor Skript or any Skript addon at the moment can divert console output to in-game chat. I don't see a reason you'd have to use this instead of just looking at console yourself anyway.
  9. PixelCraft_I_D_K

    Solved Clickable Text Problem

    I've fixed the issue, here is the problem to anyone experiencing the same: Apparently, some Skript addons make <command:> not work. <cmd:(command)> It's quite simple.
  10. PixelCraft_I_D_K

    loop block between 2 location

    here is the easy fix to your issue. set {_loc} to location of event-block set {_w} to world of {_loc} set {_x} to x-coordinate of {_loc} set {_y} to y-coordinate of {_loc} set {_z} to z-coordinate of {_loc} loop all blocks from location({_x}-1, {_y}-1, {_z}-1, {_w}): loop all blocks from...
  11. PixelCraft_I_D_K

    Inventory Saving

    variables that belong to players, as stated in warnings when skript is reloaded, don't save upon server restart. for example: {variable::%player's uuid%}. to save an inventory to a variable, you should include the player's username rather than their uuid. though i do not know the exact error...
  12. PixelCraft_I_D_K

    Solved Clickable Text Problem

    This is my code send "On/Off &8- <command:{}toggle>&cOFF<reset>" to player When it sends in-game, I can't click it though, the command does perfectly work please help! thank you!
  13. PixelCraft_I_D_K

    Skript How to make a simple proximity chat system with loop-value

    Hello! This is a simple Skript tutorial on how to create a Skript proximity chat system. How it works: It will tell the player how many people heard them and it will send the player's message to everyone within a 12 (configurable) block radius. Skript Template: on chat: loop all players...
  14. PixelCraft_I_D_K

    GUI with all online players

    https://www.spigotmc.org/resources/skript-playerlistgui-all-online-players-in-one-menu.73777
  15. PixelCraft_I_D_K

    How I can check if all players of selected team are dead

    on death: if {round_active} is true: if {blue::*} contains victim: remove victim from {blue::*} loop all players in {blue::*}: set {blueplayers::*} to loop-player set {blueplayersleft} to amount of {blueplayers::*}...