block limit?

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

uhdwo

Member
May 18, 2020
20
0
0
30
hi can anyone help me with a little skript that makes block limit pr chunk

so when player is placing a block i can define how many lets say "dirt" that can be in one chunk?
plz
 
I was not able to find solution for the "per chunk" but you may be able to use "in radius of 16 blocks":
Code:
on place of diamond block:
    loop all blocks in radius 16 of event-block:
        if loop-block is diamond block:
            add loop-block to {blockloop::*}
    if size of {blockloop::*} > 5:
        cancel event
        send "&cYou cannot place any more diamond blocks!"
    clear {blockloop::*}
 
Status
Not open for further replies.