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

    Addon Skcrew - finally?

    - now addon supports minecraft versions from 1.8 to 1.20.2 - Skript 2.7+, Skript for 1.8 support - cumulus 2.0 and some bugs/mistakes fixes - improve sockets module, now addon can be installed both on velocity/bungeecord/spigot. - added drawing on maps functionality and auto-saving edited maps...
  2. lotzy

    Skcrew

    lotzy updated Skcrew with a new update entry: finally? Read the rest of this update entry...
  3. lotzy

    API Sample Packets - 1.20.x support

    Now its works on 1.20.x versions
  4. lotzy

    Sample Packets

    lotzy updated Sample Packets with a new update entry: 1.20.x support Read the rest of this update entry...
  5. lotzy

    я выблевал столько, сколько ты залил

    я выблевал столько, сколько ты залил
  6. lotzy

    drop items at feet when inv full

    just use condition: loop drops of event-block using player's tool: if player has space for loop-value: give loop-value to player else: drop loop-value at player's location without velocity https://docs.skriptlang.org/docs.html?search=#CondCanHold
  7. lotzy

    Sample Packets

    lotzy updated Sample Packets with a new update entry: trrr brrrr boring Read the rest of this update entry...
  8. lotzy

    API Sample Packets - trrr brrrr boring

    - Auto apply DataWatcher on 1.8.8 version. Its allow you to create living entity spawn packets without carrying of DataWatcher field.
  9. lotzy

    Variable wont update when promted to

    You use local variables instead of globals, read about difference of global and local variables.
  10. lotzy

    Mob Aggression

    https://docs.skriptlang.org/expressions.html?search=#ExprTarget
  11. lotzy

    Length of argument

    Please send full code with normal code format (click 'plus' button at hotbar)
  12. lotzy

    Solved Can't replace a block in a time event in a Minecraft world

    set {_world} to world "ab" set {_loc} to location 133, 5, 74 in {_world} set block at {_loc} to air
  13. lotzy

    Using Text Variable As A Executed Player

    I'll got some mistake in variable name in my previous code, it's gonna work at now (why you doesn't recognize that mistake by your self, idk?). You can also categorize allowed damage types by this condition
  14. lotzy

    Solved Lag machine remover

    for example like this: command /locationcmd <number> <number> <number> <text>: trigger: set {_world} to arg-4 parsed as world {_world} is set set {_loc} to location arg-1, arg-2, arg-3 in {_world}
  15. lotzy

    Skript Region without using Worldguard

    The standard events built into the script do not allow you to fully do this. But the base concept of is: createRegion(loc1: location, loc2: location, name: text): set {-regions::%{_name}%::point1} to {_loc1} set {-regions::%{_name}%::point2} to {_loc2} isInRegion(loc: location) ...
  16. lotzy

    Using Text Variable As A Executed Player

    on damage of player: attacker is player victim is player set {lastdamager::%uuid of victim%} to attacker on death of player: if attacker is player: set {lastdamager::%uuid of victim%} to attacker {lastdamager::%uuid of victim%} is set set {_attacker} to...
  17. lotzy

    Кто взял шприцы из парадной - колитесь

    Кто взял шприцы из парадной - колитесь
  18. lotzy

    Solved Lag machine remover

    set {_location} to arg-2 you set variable {_location} to text from arg-2. text is not location.
  19. lotzy

    Solved Lag machine remover

    loop all block in radius %number% around %location%: But you have 2 text arguments in command, for first you need convert this to number (radius) and location (center)
  20. lotzy

    skript for disable spawners

    on spawn: spawn reason is mob spawner cancel event