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

    Skript Metadata tags

    Metadata Tags Introduction Metadata tags are a form of temporary value storage, where you tie a value to a block or entity and that value will be wiped when the server restarts. This is convenient for holding information about a entity or block where you don't have to worry about removing it...
  2. Goose

    Multiple parser marks

    Hello, I'm working on an addon dedicated to particles, and currently I'm making an expression to draw a line that the player can (optionally) change the density and distance between particles of. This seems to require multiple marks, but obviously the parser.mark can't be both 1 and 2 (if the...
  3. Goose

    Remove last character from string

    Hello friends, how would I remove the last character from a string? EXAMPLE: INPUT: !!!TEST!!! OUTPUT: !!!TEST!!
  4. Goose

    Solved Adding random characters to a string

    Hey guys, do y'all know how can I can have a string saved in a variable, and then have that same string with a random character added to the end? INPUT: a61Dja OUTPUT: a61DjaN Nevermind, figured it out myself.
  5. Goose

    "The command does not have a 2nd argument" error when a 2nd arg is set

    Hey guys, I am coding a clan system, and I am getting an error saying that there isn't a 2nd argument in the command when there clearly is. (I am not testing this in Minecraft, I am looking at the parse results in the Skunity Parser) CODE: # GUILDS YEET# #Skript by The Goose#1832# command /clan...
  6. Goose

    Solved Add 10 to player's money for every cow in {cows}

    Hey all! I need help with adding 10 dollars to the player's balance for every 1 cow in {cows} ({cows} is a variable with an integer set). How would I do this? For example, if {cows} is set to 1, the player gets $10 every minute, if {cows} is set to 2, the player gets $20 every minute, etc. I can...
  7. Goose

    Solved How to make a chest inventory that saves contents put in

    Hey guys! I am making a backpack plugin, and I was wondering how I could make a chest inventory that opens on right click, and saves the contents put in by a player. How could I do this? MY CODE: on load: set {_BACKPACK} to skull of player with custom nbt...
  8. Goose

    Modify Item Flags with Skript

    Hey everybody! So my friend has a Minehut server (which recently had updated to 1.15) so I'm skripting an Item Editor plugin for him because he doesn't have one. I wanna know how to modify item flags with Skript, keep in mind I cannot use skript-mirror because Minehut hasn't added skript-mirror...
  9. Goose

    Badlion Client users get crate key for using blc

    Hey y'all, so a week a two ago somebody found a Skript server that awards people for using Labymod, and I was curious how I would be able to do this with Badlion Client users? Your help will be appreciated! Bump
  10. Goose

    Badlion user gets crate key when joining server for first time

    Category: Player Awards Suggested name: Badlion Crates Spigot/Skript Version: 1.14 What I want: I want a skript that awards a player a tripwire hook with the name "&aBadlion Crate Key" and the lore "&8Take me to the Badlion Crates to get an award!" and I would also like it to have an enchantment...
  11. Goose

    Custom Crafting Table

    Category: GUI Suggested name: CustomCrafting Spigot/Skript Version: 1.14 What I want: I would like a custom crafting table gui, I understand this would be really hard cause you have to make the GUI and add in every single vanilla recipe (unless there is an easy way to do that :P), and if you...
  12. Goose

    How to check for a specific substring in a .yml file with Skript

    Hey guys! I wanted to make a GUI for Group Manager that can list the groups in a GUI, so in order to know all the groups, I need to go into the groups.yml file of Group Manager and when the script finds a group, it would set it a lime terracotta with the name of that group. How would I do this...
  13. Goose

    Solved Punishment GUI

    Hi, I get three errors when I load my skript and when I run the skript it goes into the punishment menu but it scrolls through all the pages in about 3 seconds (1 second passes and then goes to the next page), can you help? ERRORS: ``` The command doesn't have a 2nd argument (punish.sk, line...
  14. Goose

    Script isn't working but can't find anything wrong

    I can't find anything wrong with my script but there is apparently errors, keep in mind that some of the commands that the script forces the player to run commands that have not been implemented yet and the GUI won't open when the script is ran. CODE: command /punish [<offline player>]...
  15. Goose

    Solved Open up different GUI when left clicking an item on a GUI

    Hi! I am trying to make a custom moderation GUI for banning/warning/muting players, I wanted to know how I could open up a different GUI when I click on for example, player ban. Could you guys tell me how to do this and if possible, give me some code so I can get a better idea on what to do...
  16. Goose

    How to have console execute a tellraw command

    Hello! I need help with making the console execute /tellraw, which is a problem for me because the execute console command code uses quotations and so does tellraw, so how do I make this work? Current code: command /end: trigger: execute console command "tellraw %player%...
  17. Goose

    Solved New to Skript and trying to make an XpPaper command

    Hi, I am trying to make a command called XpPaper which gives you a piece of paper and when you right click it gives you 5 levels of experience. I am very new to Skript and could use help, by chance could you guys tell me how to make this and also recommend me any good people to go to for...