545 B
545 B
Function: IsInvulnerable(spawn)
Description: Return's true if spawn is set to invulnerable.
Parameters:
spawn
(Spawn) - Spawn object representingspawn
.
Returns: True if Spawn invulnerable otherwise false.
Example:
-- From RegionScripts/exp04_dun_chardok/char_p10_crossbridge_pit01_region.lua
function EnterRegion(Zone, Spawn, RegionType)
-- RegionType 2 is 'lava' or 'death' regions, RegionType 1 is water
local invul = IsInvulnerable(Spawn)
if invul == true then
return 0
end