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

    Equip player with an enchanted armour piece and name using variables

    That's not the best way to create a kit system and you will have a pain to add more kits later. Your code need a refractor, I highly recommand you to read about skript lists because I'm going to use that in the next example. That's how I would make a kit system: Registering a kit set...
  2. Abdera7mane

    Material names?

    You can find all skript aliases names for items and entities here just keep in mind that they might be different depending on your skript version
  3. Abdera7mane

    Equip player with an enchanted armour piece and name using variables

    I have few marks, you are trying to give/equip the player a string because {piece} variables is set to a text and not an item stack so you would need to parse it as an item as the following example set {piece} to "%{gearQuality}% boots" parsed as item #now you can safely use the variable as an...
  4. Abdera7mane

    Teleporting Player Using Worlds

    Try with teleport player to location at 0, 30 and 0 in world "ul_spawn" If that didn't work use that teleport player to location at 0, 30 and 0 in world ("ul_spawn" parsed as world) Your mistake was in location x, y, z which is an invalid expression the corrects one are location at x, y, z and...
  5. Abdera7mane

    Not all commands inside if statement execute

    You have probably got an error when loading the script, you forget to close the quote at the fourth line, also check if you had errors in the console
  6. Abdera7mane

    Name of player's inventory not working

    Inventory name expression no longer works on mc 1.13+ servers, to fix this either use skquery or tuske, they have an expression for inventory name
  7. Abdera7mane

    crate system

    server version and skript version ?
  8. Abdera7mane

    Solved If block at {_x} {_y} {_z} is {_block}

    you forgot to seperate the coordinates with a commma. block at {_x}, {_y} and {_z}
  9. Abdera7mane

    Help needed

    Skacket MiSK +0.1.5 (outdated)
  10. Abdera7mane

    Solved How do I get location of targeted block without XYZ

    why using console commands ? you can summon an entity using skript effects, if you want to edit the nbt tags get SkBee addon. if you still want the answer of how to get the coordinates values from a location you can do this: set {_location} to location of targeted block set {_x} to...
  11. Abdera7mane

    Solved Set world spawn

    the correct expressions are: {Player3}'s compass target and compass target of {Player3} you forgot the ' after the player variable.
  12. Abdera7mane

    Solved Set world spawn

    you just copy pasted the example of the documentaion, ofc it doesn't work since you haven't edited the code to match your need also {compass::target::*} doesn't contain anything since you haven't created this list yet.
  13. Abdera7mane

    Solved Set world spawn

    well there is a compass target expression and you can change its value for players, no need to update the world spawn point. here is the link to the documentation: https://docs.skunity.com/syntax/search/id:3940
  14. Abdera7mane

    Solved Set world spawn

    you have to specify the world set the spawn point of "world_name" to the player's location also why setting the world spawn location every second ?
  15. Abdera7mane

    Solved how to i make holograms that have multiple lines

    if I'm right the parser doesn't support skript-holo syntaxes yet give this a try: create a new holo with lines “&6Bitcoin &cMiner” and “&7Right-click to open” at (1 block above {_localtemp}) and store in {miners.holo.%player%}
  16. Abdera7mane

    Solved how to i make holograms that have multiple lines

    here is the correct syntax: 1 block above {_locationtemp}
  17. Abdera7mane

    Solved how to i make holograms that have multiple lines

    which addon are you using for holograms ? anyway Holographic Display uses ; to break the text line, example: • using SkRayFall: create hologram "Line1;Line2;Line3" at player for 10 seconds • using skript-holo you can just create a list of strings: create holo with lines "line1", "line2" and...
  18. Abdera7mane

    balancetop money formatting

    please use code block when insering your code. you may find the answer here: https://www.spigotmc.org/threads/how-to-format-currency-in-skript.337064/
  19. Abdera7mane

    Solved New Line question for json.sk

    new line expression was introduced in Skript 2.5, for older versions either install SkQuery or use Skript-mirror.
  20. Abdera7mane

    Prevent certain block places on others plot

    this way it turned to be more complex since the plots can have custom size (after seeing the screenshot you sent) and they don't follow a static rule, I can't give a direct solution for this .. sorry