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

    Solved Coloured leather armour in GUI's

    Use NBT tags {display:{color:8405056}} https://minecraftcommand.science/armor-color
  2. aescraft

    Solved My server crashes when a mob attacks me

    why use while? on damage: if victim is a player: if player is in the world "PvP": set {_i} to a random integer between 1 and 4 drop {_i} of emeralds or "if victim is in the world "X"
  3. aescraft

    How to run a command when joining an area

    The thing is, what will be the trigger to start checking the player position? And this trigger probably would take alot of resources. Is not a good thing to do with skript. WolrdGuard is very lightweight, you should use it for creating the region. Also, you can set in worldguard commands to be...
  4. aescraft

    Solved Shoot arrow that cannot be picked up?

    What minecraft version are you using? As skript mirror is not updated as far as I know. Thanks!
  5. aescraft

    Solved Help with Cheque System

    Cool!
  6. aescraft

    Solved Help with Cheque System

    Remove the space after the || this: give player 1 paper of fortune 1 named "&aCheque" with lore "From: %player% ||%arg-1%" The problem seems to be with the variable {_value} that is not being set.
  7. aescraft

    Solved Help with Cheque System

    Did the lore of the item get set? You saw if the second line of the lore was "150"?
  8. aescraft

    Solved Help with Cheque System

    give player 1 paper of fortune 1 named "&aCheque" with lore "From: %player% || %arg-1%" try this
  9. aescraft

    Solved Help with Cheque System

    You added || to the code? before the lore?
  10. aescraft

    Solved Leveling System

    If your code is not working, maybe the variable is not set. I think your code is correct. Anyway check this: http://en.njol.ch/projects/skript/doc/expressions read the Arithmetic part
  11. aescraft

    Solved Leveling System

    Why are you using a command? You should use again the event "on rightclick". Example: You want players to just plant potatoes, and later let them plant wheat: on rightclick on soil: player tool is wheat: #dostuff (check if the player can plant wheat)
  12. aescraft

    Solved Help with Cheque System

    If you use skript 2.3 or newer, lore is built into skript. I made the code for you. command /cheque <integer>: trigger: remove arg-1 from {money.%player%} give player 1 paper of fortune 1 named "&aCheque" with lore "From: %player%", "%arg-1%" send "You sucefully created a...
  13. aescraft

    Solved Help with Cheque System

    What addons do you use? Tuske? SkQuery?
  14. aescraft

    How to run a command when joining an area

    You first need to set the area with a plugin like worldguard. Then, you need to find the addon for skript that works with worldguard. I dont remember which one is. Use the docs.
  15. aescraft

    Solved Leveling System

    The doc you need is the event "on rightclick" In this case, "on rightclick on soil:"
  16. aescraft

    Solved Help with Cheque System

    So, you are setting a variable with the player name to a value from the command (arg-1) {cheque::%player%} to arg-1 You know that the variable will be set as the name of the player who created the cheque, right? So, if you create the cheque, this will set the variable to your name. When you...
  17. aescraft

    Solved Leveling System

    You will need to keep track of each crop. Player plants the seed: +1 to the crop total Player breaks the plant before the plant is ready to harvest: -1 to the crop total Player harvests: no change in total If you don't want automatic farms to count as the crop number, you can do this: Player...
  18. aescraft

    Script Tools Sublime Text 3 Syntax Highlighting

    @Pikachu Did you really made the .exe for this?
  19. aescraft

    Is a season cycle skript viable?

    I searched the docs trying to find something to work with the change in the crop grow rate, to create a seasonal cycle for the crops, but I could not find it. Anyone has anything in mind on how to do it? I never tried, but it's possible to the skript change the spigot.yml or bukkit.yml files to...
  20. aescraft

    Alternative to message all variable values in a single line

    This is my code right now, it's somewhat inefficient : if arg 1 is "membros": loop {grupolwc::*}: if loop-index = player: set {_number} to 0 loop {grupolwc::%player%::*}: add "%loop-value-2%; " to {_text::*} add 1 to...