Recent content by XanderWander

  • 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. X

    Solved how can I get inventory name in 1.14.4

    import: org.bukkit.event.inventory.InventoryClickEvent on InventoryClickEvent: if event.getView().getTitle() contains "your title": Requires Skript-Mirror https://forums.skunity.com/resources/skript-mirror.254/
  2. X

    on hologram touch

    I am not sure but i think SkRayFall only works with HolographicDisplays so try installing that.
  3. X

    on hologram touch

    What hologram plugin do you have? According to the documentation provided by skRayFall you souhld have HolographicDisplays https://dev.bukkit.org/projects/holographic-displays https://forums.skunity.com/resources/skrayfall.259/
  4. X

    Give item to player

    command /ssg [<item>] [<text>] [<player>]: executable by: console trigger: set {signshop::item::%arg-1%::amount} to {_amount} give arg-3 {_amount} of arg-1 named arg-2
  5. X

    Solved how to get event-item slot on "On Consume: " event

    player's tool player's current hotbar slothttps://docs.skunity.com/syntax/search/id:2298
  6. X

    what addons are required for open chest with 6 rows to palyer

    open chest inventory with 6 rows named "name" to player https://docs.skunity.com/syntax/search/id:2065 No addons required.
  7. X

    Solved Spawn armor stand right in front of player

    location 0.1 in front of player
  8. X

    Team prefix with Skellett

    I have tried to recreate this issue on multiple versions of Spigot and PaperSpigot and the issue still appears. It seems to be an issue with Skellett.
  9. X

    Team prefix with Skellett

    What is the exact code you used?
  10. X

    Solved Spawn mythicmobs

    options: world: TestWorld function mmSpawnMobs(name: text, loc: text): # format location: {_loc} -> {_locSpawn} set {_world} to {@world} set world of {_locSpawn} to "%{_world}%" parsed as a world spawn mythicmob "%{_name}%" at location {_locSpawn} with level 1
  11. X

    script loading the same variable

    Since you didn't provide any information the best advise I can give u is try deleting the variables.csv file in your skript folder and restarting the server.
  12. X

    Solved Skript GUI - Drops contents

    Try this (not tested). command /infobook2: trigger: send "&cKommer snart..." #Indstillinger options: prefix: &a&lInfo: &c #GUI setup command /infobook: executable by: players trigger: open chest with 5 row named "&2&l&nInformation" to player...
  13. X

    Team prefix with Skellett

    [skellett] (score[ ][board]|board) add entry [(from|of)] %string% to %team% Add an entry to the given team. Entry is a string which can be either an entity or a player. I believe this is what you are looking for. Try this: scoreboard add entry "%player%" to {_team} or scoreboard add entry...
  14. X

    Team prefix with Skellett

    You need to get the team first: [skellett] (score[ ][board]|board) [get] team [(for|from|of)] %string% set {_team} to scoreboard team of "player" set scoreboard team prefix of {_team} to "&8"
  15. X

    Durability with Scoreboard

    What addons are you using? on damage: wipe victims sidebar set name of sidebar of victim to "&c%attacker%" set score "&7Boots: &e%damage of boots of attacker%" to 1 set score "&7Leggings: &e%damage of leggins of attacker%" to 2 set score "&7Chestplate: &e%damage of chestplate...