Page 1 of 1
No reinforcement drop?
Posted: Tue Jun 16, 2009 2:37 am
by jango
In my map when you control more command posts the other team's reinforcements dont drop, and whe n i capture all command posts it doesnt give 20 seconds. How can i fix this?
Re: No reinforcement drop?
Posted: Tue Jun 16, 2009 2:27 pm
by newguy99
I have the same question/problem. My maps reinforcements don't bleed and there is no victory timer? Could use some help!
Re: No reinforcement drop?
Posted: Tue Jun 16, 2009 5:05 pm
by ANDEWEGET
ther are somewhere some lines with bleed, experiment with them.
edit: in the lua
Re: No reinforcement drop?
Posted: Tue Jun 16, 2009 7:36 pm
by jango
I have found it! you have got to add this for defense
Code: Select all
AddBleedThreshold(DEF, 31, 0.0)
AddBleedThreshold(DEF, 21, 0.75)
AddBleedThreshold(DEF, 11, 2.25)
AddBleedThreshold(DEF, 1, 3.0)
and this for attacker
Code: Select all
AddBleedThreshold(ATT, 31, 0.0)
AddBleedThreshold(ATT, 21, 0.75)
AddBleedThreshold(ATT, 11, 2.25)
AddBleedThreshold(ATT, 1, 3.0)
Re: No reinforcement drop?
Posted: Tue Jun 16, 2009 7:45 pm
by newguy99
Thanks jango!!
I was looking through the .lua and couldn't find anything?! But this clears it up.

Re: No reinforcement drop?
Posted: Tue Jun 16, 2009 10:28 pm
by jango
well that solved the reinforcement bleed problem but it still doesnt do the 20 second thing. i guess thats not too important though.