hi all,
I need to make an invincible monster but I don't know how to...
Is someone have an idea ?
Invincible I mean, never have damage.
I tried with all immunities and evasion=100 but the monster still have damages during the fight sometimes...
How to make an invincible monster?
Re: How to make an invincible monster?
You can also set protection sky high, it will take "0" damage when hit
Finished Dungeons - complete mods to play
Re: How to make an invincible monster?
mmmm...
I thought it was % then the maximum was 100 !
It seems ok with 1000000 for evasion
I thought it was % then the maximum was 100 !
It seems ok with 1000000 for evasion
-
Marble Mouth
- Posts: 52
- Joined: Sun Feb 10, 2013 12:46 am
- Location: Dorchester, MA, USA
Re: How to make an invincible monster?
Hi Pandafox. Here's a couple of options.
This monster won't even take any damage from attacks. No damage numbers on the screen, no recoil, no nothing:
This monster will take damage normally, but it will never die:
This monster won't even take any damage from attacks. No damage numbers on the screen, no recoil, no nothing:
Code: Select all
cloneObject{
name = "skeleton_juggernaut",
baseObject = "skeleton_warrior",
onDamage = function ( object, damage )
return false
end,
}
Code: Select all
cloneObject{
name = "skeleton_survivor",
baseObject = "skeleton_warrior",
onDie = function ( object )
return false
end,
}
Re: How to make an invincible monster?
great! thanks 
Re: How to make an invincible monster?
If onDamage has return false it will also be silent, so you might consider playing a soundAt at the same time as the hook, an impact sound of your choosing
Finished Dungeons - complete mods to play
