Recent content by Lummox

  • 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. L

    Overlapping Regions, Priorities, and Skript

    @GRRRilla_Ninja The priority of a region is determined in the "Worldguard" itself. What I want is for "Skript" to find the region with the highest priority in "Worldguard" and only work on that region, and not with all the others that are overlapping.
  2. L

    Overlapping Regions, Priorities, and Skript

    When you are in a region that overlaps with another region, how can you specify that it only "sees" the region with the highest priority? broadcast "%region at player%" It always returns the name of all overlapping regions, regardless of their priority.
  3. L

    ShoSKo

    How I can remove a region?
  4. L

    When place a block, add time and coords in a variable, after a while delete everything.

    on place of anomalia: add location of event-block to {anomalias.fuego::*} add now to {anomalias.tiempof::*} every 1 seconds in world "world": if size of {anomalias.fuego::*} is bigger than 0: set {_maxf} to size of {anomalias.fuego::*} broadcast "SIZE OF MAXF...
  5. L

    Message repeat in a loop

    every 5 seconds: loop all players: loop blocks in radius 5 around loop-player: loop-block is a fire or lava: add player to {temperatura.fuego::*} add 0.25 to {temperatura.actual.%loop-player%} if {temperatura.actual.%loop-player%} < 37.4...
  6. L

    Drop item lying on floor (without movement)

    It is possible to make a dropped item stay lying on the ground without movement?? I want a block to drop an item and it is “stuck” on the surface of the block, without movement. As if they had left him lying on the ground (Sorry for my english).
  7. L

    CIT Custom armor with optifine

    I am trying to create custom armors for my server. With Skript, I created armor with a specific name: - Gorro NOX - Pechera NOX - Pantalones NOX - Botas NOX **(helmet, chestplate, leggings and boots) Then I created a texture package with these directories...
  8. L

    How to play particle with speed and force

    @Blue Is it possible to specify the viewing distance? I tried with "show 100 firework's spark with speed 0.2 at block 4 above {_b} in radius of 256" but a few blocks away the effect is no longer visible.
  9. L

    Authme and Skript

    Thanks, it solved it by changing the effects of "SharpSK" by commands. Example: set {_pass} to a rounded random number between 100000 to 999999 make player execute command "register %{_pass}% %{_pass}%" Now, in this part of the code, why does it only show the first value of...
  10. L

    Authme and Skript

    Is there any addon that is compatible with Authme ?. Years ago I created this script that worked with "SharpSK" and "Tuske", but now it tells me that it doesn't recognize these lines. on first join: if {listablanca.ip::%player%} is ip of player: set {listablanca.registro.%player%}...
  11. L

    Disable custom amor protection.

    I have created this image so that it is better understood: What a silly mistake :emoji_blush:, thanks for warning. Any idea? :emoji_blush: @Revelationage Do you have any idea?
  12. L

    Disable custom amor protection.

    I tried with: aliases: craft = 58 options: gorronox : iron helmet with nbt "{AttributeModifiers:[{Slot:""head"",AttributeName:""generic.armor"",Name:""armor"",Amount:0,Operation:0,UUIDLeast:0,UUIDMost:0}]}" named "&eGorro anti nox" pecheranox : iron chestplate with nbt...
  13. L

    Disable custom amor protection.

    Thank, but it gives the same result.
  14. L

    Disable custom amor protection.

    options: gorronox : iron helmet named "<yellow>Gorro anti nox" pecheranox : iron chestplate named "<yellow>Pechera anti nox" pantalonnox : iron leggings named "<yellow>Pantalones anti nox" botasnox : iron boots named "<yellow>Botas anti nox" on damage: victim is wearing...
  15. L

    Loop all items in... error.

    I have these two errors with "loop all items in ..." I'm using lastest version of benkus skript and addons. Error 1: There's no loop that matches 'loop-player's inventory' (caducidad.sk, line 92: loop all items in loop player's inventory:') at 00:00 in world "world": loop players...