Solved Skript + Plotsquared being weird

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

Nubb

New Member
Apr 30, 2021
6
0
1
17
for some reason if i use "on block place:" event it still registers the block place if someone places it on the plotsquared road or another plot.

not sure if this is a normal problem but i expected it to be like worldguard for example where worldguard removes the block before it registers.
 
should work
edit: if it doesnt then idk
Code:
on block place:
  wait 1 tick
  block at location of event block is event-block
 
should work
edit: if it doesnt then idk
Code:
on block place:
  wait 1 tick
  block at location of event block is event-block

Code:
on block place:
  wait 1 tick
  if block at location of event-block is not air:

had to change it to this but it works! ty
 
Code:
on block place:
  wait 1 tick
  if block at location of event-block is not air:

had to change it to this but it works! ty
no sure if water logging counts as placing, so its worth testing
 
Status
Not open for further replies.