getting a boss to appear about half way after you beat another boss

esn23

Active member
So on my boss level i want the first boss male sentinel to appear and you to fight him.. Once he is about half way dead or even dead I want to spawn the female one.. Here is what I had which doesn't work..

spawn PrimeMal
alias  PrimeSentinel
boss 1
coords 20 250 1
at 20

spawn delay
health 1000
coords 267 250 1
at 200

spawn PrimeFem
alias  PrimeSentinel
boss    1
coords 267 250 1
at 200

Should I use group 1 1 to do it im a bit rusty sorry about that.
 
Should be like this:

Code:
Group 1 1
at    200

Wait
at    200

spawn   PrimeMal
alias   PrimeSentinel
boss   1
coords   20 250 1
at   200 

spawn delay
health 1000
coords   267 250 1
at   200


Group 1 1
at     200

wait
at    200

spawn   PrimeFem
alias   PrimeSentinel
boss    1
coords   267 250 1
at   20

Note: If the "delay" entity has type enemy, you need to change the first group to 2 2.


Or you can use the method of the follow link, to spawn the female when the health of the first boss decrease enough.
http://www.chronocrash.com/forum/index.php?topic=719.msg5894#msg5894
 
I agree with Ilu, script would be better
My question is: is boss 1 setting important?
If it's not, the script system could be simpler i.e first boss spawns the other boss when his HP drops below half
If it is, the system would be more complex i.e first boss is spawned together with fake enemy. The fake enemy is waiting for signal from the first boss. When the latter loses more than half HP, he gives signal for fake enemy to suicide. Death of fake enemy allows the other boss to enter the field
 
Bloodbane said:
I agree with Ilu, script would be better
My question is: is boss 1 setting important?
If it's not, the script system could be simpler i.e first boss spawns the other boss when his HP drops below half
If it is, the system would be more complex i.e first boss is spawned together with fake enemy. The fake enemy is waiting for signal from the first boss. When the latter loses more than half HP, he gives signal for fake enemy to suicide. Death of fake enemy allows the other boss to enter the field
It's for the prime sentinel boss battle, when the male is half health i wanted the female to come and back him up.. The level is a boss level the screen is about as big as the resolution
 
Back
Top Bottom