No reinforcement drop?

Post everything from general questions, to modding questions, to map WIPs to releases. (SWBF1 only)

Moderator: Moderators

Post Reply
User avatar
jango
Command Sergeant Major
Command Sergeant Major
Posts: 272
Joined: Mon Jan 19, 2009 8:05 pm
Projects :: too many
Games I'm Playing :: Black Ops
Location: A galaxy far far away...

No reinforcement drop?

Post 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?
User avatar
newguy99
Command Sergeant Major
Command Sergeant Major
Posts: 254
Joined: Sun Apr 19, 2009 10:58 am
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set

Re: No reinforcement drop?

Post by newguy99 »

I have the same question/problem. My maps reinforcements don't bleed and there is no victory timer? Could use some help!
User avatar
ANDEWEGET
Ancient Force
Ancient Force
Posts: 1266
Joined: Tue Apr 01, 2008 8:42 am
Location: Germany
Contact:

Re: No reinforcement drop?

Post by ANDEWEGET »

ther are somewhere some lines with bleed, experiment with them.

edit: in the lua
User avatar
jango
Command Sergeant Major
Command Sergeant Major
Posts: 272
Joined: Mon Jan 19, 2009 8:05 pm
Projects :: too many
Games I'm Playing :: Black Ops
Location: A galaxy far far away...

Re: No reinforcement drop?

Post 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)
User avatar
newguy99
Command Sergeant Major
Command Sergeant Major
Posts: 254
Joined: Sun Apr 19, 2009 10:58 am
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set

Re: No reinforcement drop?

Post by newguy99 »

Thanks jango!!
I was looking through the .lua and couldn't find anything?! But this clears it up. :D
User avatar
jango
Command Sergeant Major
Command Sergeant Major
Posts: 272
Joined: Mon Jan 19, 2009 8:05 pm
Projects :: too many
Games I'm Playing :: Black Ops
Location: A galaxy far far away...

Re: No reinforcement drop?

Post 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.
Post Reply