Recent content by Allan Noyd

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