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

    Make entity break wooden slabs like in Hypixel Zombies

    Version: 1.12.2 Skript: v2.5-beta3 EDIT: I have tested stable 2.4. It doesn't work on this version also. After a month, I implemented this in my Skript and now it works?!? Very weird. But how can I make the entity break in this sequence: 5 4 6 (6 oak slabs - 3 above, 3...
  2. T

    Variable problem

    Oh sry. I can't help. What is your addon for mysql in skript?
  3. T

    Server keeps crashing (maybe because of skript?)

    This error appeared on my server. Maybe you have something like a loop which is creating always a new variable.
  4. T

    Variable problem

    Hey, did you add/delete/get variables on your mysql system? And are both servers connected to the same mysql table? Without your code nobody can help you directly.
  5. T

    Function in function

    Yes you are right. I have tested it some weeks ago. So the parsing error doesn't exist. But another error comes up: Invalid function call to a function that does not exist. Be careful when using functions in 'script load' events!
  6. T

    Function in function

    Okay, why?: function repeatname(round: number, from: number, to: number, aname: text): set {_rnloop} to "true" while {_rnloop} is "true": set {name::%{_round}%::%{_from}%} to "%{_aname}%" set {_from} to {_from}+1 if {_from} is greater than {_to}: delete {_rnloop} wait a tick
  7. T

    Function in function

    Hey, if I try to make a function in a function, then some parsing errors exists. Skript Version: Skript 2.5-alpha-3 Skript Author: Bensku Minecraft Version: 1.12.2 --- Full Code: #Monster configuration function diazombie(round: number, from: number, to: number, apos: number = 1)...
  8. T

    Error scordboard pls help

    Don't forget to install skript-mirror.
  9. T

    Error scordboard pls help

    Okay. in hours, minutes? In seconds please not because it causes lags.
  10. T

    Error scordboard pls help

    I see that many things are wrong: 1. There are many missing spaces 2. It is a very bad method of creating scoreboards. It may "flicker" very bad. 3. Have you skRayFall installed? I don't know exactly what you want, but if you delete "PlayTime", here is the scoreboard with less "flicker"...
  11. T

    random skript

    Hey I know you are German. I write this in English for anybody: It is very important, that "set {_random} to a random element out of {_list::*}" is out of "loop all players:". So this is the code: command /Zufall [<text>]: trigger: if player is op: broadcast "&8> &7Ein...
  12. T

    Solved Enable/Disable Scoreboard with %loop-player% and %player%

    I don't know and didn't find an "on balance change" event. But you could use something similar to "every second": on join: while player is online: wait a second This code is something like every second, but better: https://forums.skunity.com/threads/player-balance-change-event.93/ To keep...
  13. T

    Make entity break wooden slabs like in Hypixel Zombies

    Yes the first problem is solved. I used "on entity target" with top oak slab, which didn't work. With every second, it works. But does anyone know about the 2. problem? More bad things :emoji_frowning: every 2 seconds: loop all entities: if block below loop-entity is black wool: loop all...
  14. T

    Solved Enable/Disable Scoreboard with %loop-player% and %player%

    Hey, I don't know exactly what your problem is, but using "every second" by a scoreboard is very bad. It will lead to very bad "flicker". By creating scoreboards, you should use functions and update the scoreboard just on an event. On your scoreboard, the online players will change sometimes...
  15. T

    Make entity break wooden slabs like in Hypixel Zombies

    Yes I had this idea too, but there are 2 problems: 1. I don't know, maybe because of unstable Skript, but "oak slab" gives no error, but doesn't work, something like "stone" or "furnace" works 2. Not all blocks, only one block should be set to air, and with delay another, until the entity can...
  16. T

    Make entity break wooden slabs like in Hypixel Zombies

    I want that entities can break ONE wooden slab, if they are in front of the wooden slabs. After one wooden slab was set to air, another wooden slab will be set to air with some delay. Is this possible in Skript?