Block states/data values of water

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

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

J3zus

Member
Sep 29, 2022
1
0
1
23
Hi all,
I made a mobgen skript that works fine until you put the gen under the water.
Normally the gen requires players to be sneaking to remove the gen so they dont remove it accidentally, however when the gen is under the water it allows them to break it as for some reason in "On block break" events, it counts the water as the target block/event-block rather than the block actually being broken.

I have fixed this by doing the following code:
on block break:
if target block is flowing water or stationary water:
...
....

This fixes the issue in most cases, but it doesnt fix it if you break the block through a waterfall.
So i was hoping there was a "if target block is falling water", however this is not a thing. I have also tried doing water[falling=true] or flowing water[falling=true] but all do not exist.

How do i detect falling water so i can stop people from breaking the gens through it and just getting a normal block back?
Or, is there a way to just say if the target block is any kind of water?

(This works and player is not able to just break the block without removing the water)
upload_2022-9-29_11-44-21.png

(This does not work and player is able to break the block)
upload_2022-9-29_11-45-14.png
 
Status
Not open for further replies.