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

    Addon Skellett - The beast addon!

    I have this skript: command /mytest [<text>]: trigger: set {_disguise} to new disguise with type ZOMBIE set disguise of player to {_disguise} wait 3 seconds undisguise player But the player is not disguised for other players (they see them as a normal...
  2. pepper82

    How to set a variable to a particle?

    Hi all, this does not work: set {_eff} to "happy villager" parsed as particle effect set {_eff} to "happy villager" parsed as particle type set {_eff} to "happy villager" parsed as particle Any ideas how to set a variable to a particle? Thanks a lot!
  3. pepper82

    Make player spit blocks

    Not split :-) Imagine a sick player who vomits:
  4. pepper82

    Make player spit blocks

    Sure. But how to make the player spit the blocks and make only these blocks not pickupable?
  5. pepper82

    Make player spit blocks

    Hi there, can anyone help me? I need a skript that makes the player spit blocks (e.g. dirt blocks). The blocks then must not be pickupable. Thanks for your help!!!
  6. pepper82

    Addon skript-db

    How can you list all the values you receive from SELECT query in one row? Example: execute "SELECT spieler,grund,strafe,moderator,datum,jailname FROM {@jail_table} WHERE spieler = %{_warnplayer}% AND strafe = 'WARNING'" in {sql} and store the result in {_output::*} Now I want to list all the...
  7. pepper82

    On quit causing lag - is it skript or worldguard?

    There is a tiny lag / freeze the moment a player logs out of my server. I have trouble finding the plugin which is causing this. It could be Skript or Worldguard (both are listed red in the timings). Can you help me? What do you think could cause the freeze? Full timings...
  8. pepper82

    Your experience with bungeecord + skript?

    Hi all, thinking about creating a little network using bungeecord + skript. Does it work? Did anyone ever tried it? Any tips for a bungeecord noob like me?
  9. pepper82

    Issue with options - what is wrong here?

    Hi all, I have this script: options: sword_material: wooden sword,stone sword,iron sword,golden sword,diamond sword command /mytest [<text>]: trigger: set {_material::*} to "{@sword_material}" split at "," set {_item} to a random object ouf of {_material::*} give...
  10. pepper82

    Will Skript be available for Sponge sometime?

    Do you think that Skript will be available as a plugin for Sponge sometime?
  11. pepper82

    Addon Skellett - The beast addon!

    Hey there, how can I permanently remove a NPC (targeted entity) with Skellett? (When I try the "remove citizen"-effect it despawns the citizen but after server restart the NPC is back)
  12. pepper82

    Addon Skellett - The beast addon!

    @LimeGlass Could you please add pathfinding goals to the addon? SkStuff's pathfinding goals stuff is a pain and does not always work for some reason, also it is very limited. Example: I can not make a mob follow a specific player etc.
  13. pepper82

    How to put a tooltip in a variable?

    would it work with json.sk ? if so, how?
  14. pepper82

    How to put a tooltip in a variable?

    Hi all, I know that this works: send "Click <tooltip:test>&b&nhere<reset> to popup" But I need it this way: set {_temp} to "Click <tooltip:test>&b&nhere<reset> to open" make console execute command "/ch qm CHANNEL %{_temp}%" Any way of doing this?
  15. pepper82

    How to get the enchantments of a tool?

    Hi there, how would I get all enchantments and their levels on a player's tool?
  16. pepper82

    Addon skript-db

    Any update on the issue with mariadb ?
  17. pepper82

    Error on startup but why?

    I have split up my scripts but this one script is my biggest script. :-)
  18. pepper82

    Error on startup but why?

    Hi all, I get this error on server start: 17:41:52 CONSOLE: ERROR]: [Skript] The function 'ShowToplist' has only 1 argument, but 2 are given. If you want to use lists in function calls, you have to use additional parentheses, e.g. 'give(player, (iron ore and gold ore))' (events.sk, line 5410...
  19. pepper82

    Addon skript-db

    I really don't know but I hope for a hotfix to make my mysql scripts work :emoji_slight_smile: @btk5h : any ideas, yet?
  20. pepper82

    Addon skript-db

    So there is the script that causes this error when you enter the command ~7 times in a row: options: database: yourdatabase user: youruser password: yourpassword command /mysqlinsertcode: trigger: set {_code} to "test" set {_sql} to the database...