I decided to make a script which would immitate that powerup in H3 where you are invincible for a short period of time. I would tune it up a bit with HUD messages when I try to ingame it.
(global boolean hasPowerup false)
(script continuous Invincible
(if (hasPowerup)
(begin=
(object_cannot_take_damage (list_get players 0))
(sleep 400)
(set hasPowerup false)
)
(begin=
((object_can_take_damage (list_get players 0))
)
)
)
I probably messed up somewhere so... GAMMA!
I can probably get it to work for things such as cammo or overshield, or possibly a powerup unique to custom edition. Almost my bedtime, though, so I'll try to get this up and running tomorrow.
Edited by colter13 on Feb 8, 2010 at 10:59 PM