Solved safe explosion

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

    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.

lglg4141

Member
Feb 19, 2017
12
0
0
giqInMf.png


it's doesn't work
still not damage player
 
giqInMf.png


it's doesn't work
still not damage player

Can you provide any extra information? Such as what version of Spigot/Bukkit you're running, what version of Skript you have, what example code you used to come to this conclusion, etc.
 
Can you provide any extra information? Such as what version of Spigot/Bukkit you're running, what version of Skript you have, what example code you used to come to this conclusion, etc.

paperclip-1090
Skript.dev29
code_language.skript:
command /explode:
    trigger:
        create a safe explosion with force 2 at player
 
try this:
code_language.skript:
command /explode:
    trigger:
        create a safe explosion of force 2 at player
        loop all living entities in radius 4 around player:
            damage loop-entity by 3
 
try this:
code_language.skript:
command /explode:
    trigger:
        create a safe explosion of force 2 at player
        loop all living entities in radius 4 around player:
            damage loop-entity by 3

it's work
but i want blast protection work on this explosion
 
try this:
code_language.skript:
command /explode:
    trigger:
        create a safe explosion of force 2 at player
        loop all living entities in radius 4 around player:
            damage loop-entity by 3

This is an alright way to simulate the safe explosion, but there's still something preventing the explosion from doing anything in the first place.

it's work
but i want blast protection work on this explosion

I'm running Spigot 1.12 with Bensku's fork, and I'm able to use both the regular explosion, and safe explosion expressions. Does the regular explosion work on your server? Perhaps a different plugin, like WorldGuard or something similar (or even the server configurations), is preventing you from creating damaging explosions?
 
This is an alright way to simulate the safe explosion, but there's still something preventing the explosion from doing anything in the first place.



I'm running Spigot 1.12 with Bensku's fork, and I'm able to use both the regular explosion, and safe explosion expressions. Does the regular explosion work on your server? Perhaps a different plugin, like WorldGuard or something similar (or even the server configurations), is preventing you from creating damaging explosions?

thanks
i allow other-explosion flag on __global__
then it's work
 
Last edited by a moderator:
Status
Not open for further replies.