Page 1 of 1

How do i make an effect similar to the Arc of Death?

Posted: Thu Jan 30, 2014 12:35 am
by Lord_of_D:
i wanna make a projectile which acts similar to the arc of death, but instead of doing constant damage to the target, it will spawn a falling projectile from the roof once it hits it target, but im not sure how to, would somebody please explain me or help? :3

RE: How do i make an effect similar to the Arc of Death?

Posted: Thu Jan 30, 2014 8:33 am
by CloudFlash
invisible floorhugger that will spawn thing in death state? I'm not entirely sure what do you mean by that.

RE: How do i make an effect similar to the Arc of Death?

Posted: Thu Jan 30, 2014 2:54 pm
by Lord_of_D:
CloudFlash wrote: invisible floorhugger that will spawn thing in death state? I'm not entirely sure what do you mean by that.
i wanna make a "death state", kinda like the way the Arc of Death lightings act, i mean that they stick on their target while doing constant damage, but instead of this, i want a ceillinghugger to spawn missiles which will fall to the ground

RE: How do i make an effect similar to the Arc of Death?

Posted: Thu Jan 30, 2014 4:05 pm
by CloudFlash
Then maybe make floorhugger spawn the ceiling hugger, which will then spawn items?

RE: How do i make an effect similar to the Arc of Death?

Posted: Thu Jan 30, 2014 9:47 pm
by Lord_of_D:
CloudFlash wrote: Then maybe make floorhugger spawn the ceiling hugger, which will then spawn items?
but that still lacks the effect of sticking onto the target D:

RE: How do i make an effect similar to the Arc of Death?

Posted: Thu Jan 30, 2014 10:00 pm
by Klofkac
Ripper homing projectile?

RE: How do i make an effect similar to the Arc of Death?

Posted: Fri Jan 31, 2014 8:16 pm
by Lord_of_D:
Klofkac wrote: Ripper homing projectile?
doubt that would work, cause in case of a ripper projectile, it would get past throug the target, not stick on it

RE: How do i make an effect similar to the Arc of Death?

Posted: Fri Jan 31, 2014 11:55 pm
by Popsoap
You're gonna have to inherit from the LightningFloor and LightningCeiling actors and set the damage they do to 0. Then make whatever inherits from LightningCeiling spawn what you want to drop on the target. Then replace the LightningZap actor with a completely empty actor to prevent the native functions from spawning it.

RE: How do i make an effect similar to the Arc of Death?

Posted: Sat Feb 01, 2014 3:51 am
by Lord_of_D:
Popsoap wrote: You're gonna have to inherit from the LightningFloor and LightningCeiling actors and set the damage they do to 0. Then make whatever inherits from LightningCeiling spawn what you want to drop on the target. Then replace the LightningZap actor with a completely empty actor to prevent the native functions from spawning it.
I see...yeah that may work, thanks. btw, i took a deep look onto the code and they mention something of "lastenemy", is there a way to apply that property whitow inheriting?