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 skript-db

    What information do you need?
  2. pepper82

    Addon Skellett - The beast addon!

    Hi all, can you tell me where to find skellett mysql examples? I just want to INSERT and SELECT stuff to/from mysql :-)
  3. pepper82

    Addon skript-db

    I keep getting "Too many connections" error after some time (like when executing 5 insert - operations in a row). And my max-connections in mysql is set to 100. Are you closing them correctly? https://hastebin.com/upiviyifab.swift
  4. pepper82

    Addon TuSKe - Custom Enchantments, GUI Manager and more!

    @Tuke_Nuke can you please hotfix this issue: https://github.com/Tuke-Nuke/TuSKe/issues/26 I don't want to change hundreds of lines of codes only to make these scripts run again :O Thanks in advance!!!
  5. pepper82

    How to make a mob attack other mobs nearby?

    Thanks, I tried it but without much success: spawn a stray at location above {_loc} add pathfinder goal target nearest zombie to last spawned entity The stray sometimes attacks players nearby ignoring any zombies. The stray does...
  6. pepper82

    How to spread snowballs?

    But HOW do I push them in various directions? Can you give me an example?
  7. pepper82

    How to spread snowballs?

    Hi all, I would like the player to shoot snowballs but make them spread (like shotgun bullets etc.) slightly. How would I do it? make the player shoot a snowball at speed 0.8 push the last shot snowball .... ???
  8. pepper82

    How to make a mob attack other mobs nearby?

    hi there, I want to spawn a zombie and make it attack any other hostile mob nearby (e.g. skeleton, creeper or whatever is close to the zombie). How would I do that?
  9. pepper82

    Addon Skellett - The beast addon!

    Thanks Snow-Pyon, but what if I need that expression?
  10. pepper82

    Addon Skellett - The beast addon!

    Since weeks I am getting this error: https://hastebin.com/pedevafoka.md It seems to occur randomly.... any ideas?
  11. pepper82

    1.12 + bugs

    Hi there, I have this bug on server startup with latest 1.12 skript version. Any ideas? (everything works in 1.11.2) [20:52:59] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: make a gui slot 12 of {_playerobject} with gold nugget of fortune 1 named "&6Münzen einzahlen"...
  12. pepper82

    Weird Bug with maps - any ideas?

    I have this bug started to happen recently. I create custom maps, upload them and they work fine. But some maps change after some time / or server restart for no reason. Only some maps are affected, not all. Look at the screenshot to see what I mean: https://i.imgur.com/rZ7Velx.png They...
  13. pepper82

    Addon TuSKe - Custom Enchantments, GUI Manager and more!

    Error in console: https://hastebin.com/enabugezih.vbs Loading TuSKe v1.7.3
  14. pepper82

    Solved How to shuffle a list variable?

    Hi there, how would you shuffle a list variable?
  15. pepper82

    How to use offline player in a skript addon?

    Here is the code: https://hastebin.com/elumineriv.java Any ideas?
  16. pepper82

    Addon Skellett - The beast addon!

    Does the Placeholder API function not work? I tried this in 1.11.2: set {_this} to placeholder "%%player_name%%" from player and the result is: %player_name%
  17. pepper82

    How to use offline player in a skript addon?

    Hi all, we are trying to write a simple addon for skript to get a result from a database but it does not work as it should. Example: command /rpcheck [<text>]: trigger: set {_p} to arg-1 parsed as offline player broadcast "%rp name of {_p}%" But the result is always "none"...
  18. pepper82

    What's better: One big skript file or several files with same events?

    Hi all, regarding server performance, what do you think would be the better solution: 1.) Putting all scripts in one big skript (PRO: all stuff at one place, less events CON: reloading that skript takes forever) 2.) Splitting scripts in different files and using the same event over and over...
  19. pepper82

    How to show a colored particle?

    Hi all, how do I spawn 1 particle (colored dust with different colors, like green or blue) with offset 0, visible to ALL players ???
  20. pepper82

    Is there any simple way to sorting list variable's keys?

    Hey all, I would like to sort a list from highest to lowest key. Here my example: set {_a} to "Marion" set {_b} to "Alex" set {_c} to "Walburg" add {_a} to {_test::*} add {_b} to {_test::*} add {_c} to {_test::*} set {_test::a} to 100 set...