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

    Solved NBT Tag not working (skbee)

    Hi there, what could be the issue with this script? It does not return the set nbt tag. using latest skbee and latest skript version on 1.17.1 command /testnbt [<text>] [<text>] [<text>] [<text>] [<text>]: trigger: set {_tool} to stone sword named "&2Test" set {_nbt} to nbt...
  2. pepper82

    Solved Any working Tuske Fork?

    Hi there, is there any working fork of TuSke (for 1.17.1) and latest Skript (https://github.com/SkriptLang/Skript/releases)? I only need it for the gui stuff in it.
  3. pepper82

    More than 64 of an item in gui?

    Hi there, is it possible to have more than 64 of an item shown in a GUI slot?
  4. pepper82

    Hiring Need a Skript Addon done: Sorting Lists

    Person: PN me, no discord, been around here for some years About: I've been looking for someone to hire to make this for a while and nobody's been able to yet, so I'm asking on here now. Perm or temp: Temporary, I just need the one skript addon. Basic idea of request: In order for me to make...
  5. pepper82

    Toplists - how to?

    Hi all, as I am unable to find any working solution I would like to know if anybody else here knows a good solution for advanced toplists in skript? Something like this: add "player1" to {_score::} add "player2" to {_score::} add "player3" to {_score::*} set...
  6. pepper82

    Pasting Schematics?

    Hi all, any working skript addon in 1.15.2 to simply paste schematics at a location?
  7. pepper82

    How to clear entity instead of kill (from list)?

    I have this script: command /test: trigger: set {_loc} to player's location loop all entities in radius 30 around {_loc}: if loop-entity is a sheep: add loop-entity to {_list::*} loop {_list::*}: clear loop-value parsed as entity...
  8. pepper82

    How to change existing NBT tag?

    Hi all, I added a custom nbt tag {test:1} to player's tool. Now I want to change it to {test:2} but without resetting or changing all other NBT tags of this item. How would I do it? I can not find any syntax for this?
  9. pepper82

    Solved Any non-glitchy way to have arrow trails?

    Hi all, I tried a lot but can not get it to work: arrow trails with particles. Anyone want to share his script with me? I know the way with "while projectile is not on ground", which does not work if you shoot an entity and keeps spamming particles on this location.
  10. pepper82

    Solved Infinite Fireworks in 1.15.2?

    Does anybody know how to make infinite fireworks in 1.15.2.? This (1.13.2.) syntax does not work anymore: launch "STAR" firework at player timed 0 coloured "blue", "white", "blue", "light blue", "white", "blue", "light blue" and "white"
  11. pepper82

    Skellett + Disguise?

    Hi all, does anybody know which versions of skellett and LibsDisguise work together on a 1.13.2 server? I can not get disguising to work (no errors). This won't work (but worked in past versions): command /testy: trigger: set {_d} to a new disguise with type RABBIT set disguise...
  12. pepper82

    Saving and reading items from mysql

    Hi all, does andybody know how to store player's tool or inventory in a mysql table and later give it to him again? I know the mysql part, but I have no clue about how to save / restore the item in a mysql table.
  13. pepper82

    Help with Placeholder API

    Hi there, I just downloaded the latest Placeholder API and the Skript Addon "Ersatz" for testing its stuff: command /testy: trigger: set {_ping} to placeholder "player_biome" broadcast "your ping is %{_ping}%" Result is <none> --- But I get no errors or anything. Any...
  14. pepper82

    Shoot fireball that drops after some time

    Hi all, can anybody post a simple example of shooting a fireball from the player towards a location and make the fireball drop to the ground after some time (like bullet drop)?
  15. pepper82

    SQLite to Mysql

    Hi all, I used the sqlite database since forever but now need to switch to mysql (storing all skript variables to mysql) because of setting up bungeecoord on my production server. Here are my questions: 1.) How can I import all variables from sqlite to mysql? 2.) Is the skript's mysql database...
  16. pepper82

    Create a working, up-to-date Database / Mysql Addon

    I know there exists one addon named skript-db, but this addon does not work really (at least on newer skript versions) well and is not maintained / updated anymore. Since skript does not provide stable, really usable build-in mysql features we are in need of a simple, but working mysql addon...
  17. pepper82

    Solved How to make clickable chat messages?

    Hi there, this does no longer work in latest skript it seems: <command:/event join %loop-value%> How does it work in 1.14.4+ ?
  18. pepper82

    How to get the real online uuid in a bungeecord server?

    Hi all, when I broadcast the player's uuid on a bungeecord server it shows his offline uuid but I need to work with the online uuid. how would you do this?
  19. pepper82

    How to get loop-entity on skript 1.14.4?

    Hi all, this works fine with 1.13.2 but not longer in 1.14.4: command /testi [<text>]: trigger: loop all entities in radius 3 around player's location: if loop-entity is armor stand: message "%loop-entity%" I need to get the loop-entity (need to set it...
  20. pepper82

    How to set an item in an itemframe?

    Hi all, how can I set an item in an itemframe (without using Skellett addon) ?