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. Allan Noyd

    How do I make creepers stop exploding?

    If that's what you wanna do, technically you can stop creepers from even tracking players: on entity target: event-entity is creeper target is player cancel event
  2. Allan Noyd

    On painting destory ???

    Paintings are not a block but an entity just like item frames for instance. Might want look into 'on death' event or something. Not sure though.
  3. Allan Noyd

    On walk on activator rail

    Activator rail is a non-full block, meaning that you are passing through it when you "walk" on it. My guess would be that the "on walk on" event scans the block that has Y value 1 less than the player triggering it every time he moves; thus it scans whatever the rail is laid on, instead of the...
  4. Allan Noyd

    Display name help

    Yes. This made me sad too when I found it not working. I suppose skript simply cannot recolor your display name. :(
  5. Allan Noyd

    Solved Weird endeavor of the "on portal" event. Pls help.

    Hi. First of all, thank you for the help. My skript-testing server does not like the code for some reason, but imma write that off as Minehut being Minehut. Online parser says it cannot compare event-teleportcause with an item type, but who knows. Are you sure enderpearling won't get canceled...
  6. Allan Noyd

    Solved Weird endeavor of the "on portal" event. Pls help.

    What is Skript info? If you mean skript version, I have the latest version. If you mean error message, there's none.
  7. Allan Noyd

    Solved Weird endeavor of the "on portal" event. Pls help.

    I tried that too, but thanks for trying tho. At this point I just think Minehut is pranking me.
  8. Allan Noyd

    Solved Weird endeavor of the "on portal" event. Pls help.

    Is this new? I never used colons after "simple" conditions (a.k.a. conditions without "if" statement) before and it used to work. Edit: Also, it does not work for me either. :/
  9. Allan Noyd

    Solved Weird endeavor of the "on portal" event. Pls help.

    I'm trying to do it so specific players are not allowed in to the end dimension (they cannot go through the enderportal). As skript on my server has been protesting ever since the 1.18 update, I was going on it slowly. First code looked like this: on player portal: broadcast "hi" And it...
  10. Allan Noyd

    Help with a skript; canceling ender portal travel for a specific player.

    I remember it was up to date in the time of writing that comment.
  11. Allan Noyd

    Help with a skript; canceling ender portal travel for a specific player.

    Doesn't seem to work, but I had problem with Skript lately anyway. Not even custom commands work so I have no idea what to do :(
  12. Allan Noyd

    Help with a skript; canceling ender portal travel for a specific player.

    Hi, I have been wondering what can you guys come up with. I have been trying to disable enderportal for myself as a character on a RP server I'm on, for the good of lore. All my trials to skript this however failed for me. On my testing server I have found out that skript's name for enderportal...
  13. Allan Noyd

    Tuske wont work?

    Did you give yourself the permission? Maybe try it without the permission condition at first to try if it works without it.
  14. Allan Noyd

    Spawning particles randomly around the player

    I used this for one of my past projects, hope it helps. (Uses SkBee in case you do not, even tho it seems you are) every 0.5 second: loop all players: loop-player is {MER} chance of 10%: play 10 of falling water above loop-player offset by vector(0.5, 0, 0) with...
  15. Allan Noyd

    Help with looping players to assign them to arenas

    It should be possible if you store the coords of starting positions in every arena, allocate temporary status to each player, randomly choose two statuses for each arena, teleport players with those statuses to that arena's starting points and somehow keep track of which player already has a...
  16. Allan Noyd

    Solved Keep players in the water from sinking

    I coded an off-brand Origins mod for my server which could not have real mods installed. I did this for Merling. every tick: loop all players: if the block at loop-player is a water, a seagrass, a tall seagrass, a kelp or a kelp plant: set loop-player's gravity to off...
  17. Allan Noyd

    A little challenge

    Make skript print a list of 9 digit integers obeying these rules: -No digit can have repeating value ( no number can be used more than once) -First digit must be bigger than 0 -Sum of 1st, 2nd and 3rd digit = 10 -Sum of 3rd, 4th and 5th digit = 10 -Sum of 5th, 6th and 7th digit = 10 -Sum of 7th...
  18. Allan Noyd

    Cannot cancel event of portal-ing?

    I tried to make a specific player not be able to use end portal. First of all I tried the syntax I came up with, there was no error upon reloading the skript, but it wouldnt work. I tried different spelling, fixing typos and clearing up syntax, but nothing would work. Are we not able to cancel...
  19. Allan Noyd

    Solved How to detect if block above player is all air?

    Try every second: loop all players: altitude of highest block at location of loop-player > y-coordinate of loop-player #the code it should execute goes here Hope it helps.