09-29-2016, 12:58 AM
Is there currently any way to prevent flying blocks (from explosions) from landing in a specific area?
Prevent flying blocks from landing in area
|
09-29-2016, 12:58 AM
Is there currently any way to prevent flying blocks (from explosions) from landing in a specific area?
09-29-2016, 01:22 AM
You could use the OnExploding hook to detect them.
09-29-2016, 05:29 PM
09-30-2016, 12:05 AM
Something like this
function OnExploding(World, ExplosionSize, CanCauseFire, X, Y, Z, Source, SourceData) if (--[[Explosion is not in protected area]]) then return false; end return true end |
« Next Oldest | Next Newest »
|