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

    Replace all glass around player with air, then undo

    I'm trying to replace all the glass in a certain radius around a loop-player to air so they get released from the cage, then undo it so the glass is back for when they respawn in the cage. I've only been able to get it to replace the blocks one by one... IMAGE: This is what I have...
  2. G

    Set text from hologram to variable

    Is it possible to get the text from a hologram made by HolographicDisplays and set it to a variable? I want to do something like this: if {_HoloLine1} contains "%loop-player%": stop
  3. G

    Change name of player in nametag

    I want to change a players name in their nametag above their head for a /nick skript I'm making. I heard MundoSK had a nametag feature but I can't seem to find a version that includes it. Is there any way to do it or does anyone know what version of MundoSK has the nametag feature?
  4. G

    Change name above head

    I'm trying to make a /nick skript but I haven't been able to change the name (not prefix/suffix) above the players head. Is there any way to do this?
  5. G

    Solved Skript-yaml error

    nvm, I got it.
  6. G

    Left/Right click in GUI

    Is it possible to do different actions in a GUI with 'on inventory click' depending on which button they used? I'm using Mirreski's 1.8 fork.
  7. G

    Solved An internal error occurred while reloading a script

    Whenever I try reload some of my scripts, it gives me the 'An internal error has occurred' message and spits this out in console, Any way to fix this? (btw, I know I can remove SkStuff and it will be fine, but I need it for nbt)
  8. G

    Using custom heads in gui

    I'm trying to use heads from https://minecraft-heads.com/ in a GUI but the only method I can think of to put the head in the GUI, is to give me the skull, save my held item as a variable and set the slot to the variable, but that doesn't work. Is there any way of using the custom heads in a...
  9. G

    Solved variable can only be set to one object, not more

    I'm trying to make a Skript where if a server uses MyBB forums, players can link their profile by setting their profile id to a variable, and server owners can use the variable in other Skripts. However, I want to make it so the user does the command '/linkmyforums {insert MyBB profile URL...
  10. G

    Send message to players from a list

    I'm trying to make a friends skript and I want to make it so that when a player joins, their friends are alerted. This is what I thought of but it's not woirking. on join: loop {friends.%player%::*}: set {_p} to "%loop-value%" send "&aYour friend, %{rank.%player%}% %player%...
  11. G

    Change players tab name

    Skript Version: Skript 2.2 Fixes V8b Skript Author: Mirreski Minecraft Version: 1.8.8 Hi, I'm trying to change a players nametag (name above head, not tablist) to have a prefix and colors (like &a, &b, &c) but I tried [set player tab name to "&7%player%"] but that only changes the name in the...
  12. G

    Solved Amount of certain item in slot

    Skript Version: Skript 2.2 Skript Author: Mirreski Minecraft Version: 1.8.8 I'm trying to make a sell gui using "Inventory clicking" by setting a slot in a gui to the clicked item, but I want to try and make my code loop for every item in the slot. Is this possible?
  13. G

    Get integer from lore

    Skript Version: Skript 2.2 Skript Author: Mirreski Minecraft Version: 1.8.8 I'm trying to make a banknotes skript and I want players to be able to rightclick and redeem the banknote. I was thinking that if the amount of money the banknote is worth is in the name/lore, then there might be a way...
  14. G

    Solved Add SPECIFIC item to gui

    Hi, I'm trying to create a GUI shop to sell custom enchantments (from another plugin) and I was wondering if there was a way to easily add the book to the GUI while keeping the lore and NBT tags without manually adding it. If this is possible, it would be great if you could reply and help me...
  15. G

    If Variable is = or > than variable

    Hi, I'm trying to make it so players can convert "karma" to money but I can't seem to get it to work Here's my current code: command /karma250: trigger: set {karma.required.%player%} to 250 if {karma.%player%} is greater than {karma.required.%player%}: execute...
  16. G

    Command to open book with json text

    Hi, I don't know whether this would be possible with Skript or not but I'm looking to recreate Hypixel's /nick feature. I want to have the command /nick open a book with text and when you click on a rank, it runs a command. I currently have this to open the book but it just says invalid book...