Delta Force Barracks Forums

WAC wont work....

cmurphe - 7-25-2007 at 11:58 AM

IO dont get it...I have all the code right, I made the wac file the same name as the map, I used the /d shortcut but it dosent work...(Making text appear)

Why?

Chumly - 7-25-2007 at 01:06 PM

Maybe sunspots are keeping it from working?


Seriously though, if you could post the code in question, (or at least more info than "my WAC file isn't working") it would help to understand the nature of the problem.

Chumly

Eagle_Eye - 7-25-2007 at 04:55 PM

DFX doesn't require the /d to use wac/bin files etc..

Must be a spelling error, or trigger error..

EE

cmurphe - 7-27-2007 at 01:52 AM

Ok well heres the Code:

if never()
snow(100)
endif

if never() then
text"Go your commander at Alpha for your briefing"
endif

ssnarea(10000, 1) and never() then
text"First you must gwet into the buggy and wipe out the AA guns on other side of mountains so"
text"so you can fly over it to the enemy Airbase to destroy oil barrels and helicopters"
text"Good Luck :)"
endif

thats it...

Assassin Xaero - 7-27-2007 at 03:11 AM

if never()
snow(100,#2) Need another number here... I think it is fade to #1 strength of #2 amount of seconds
endif

if never() then
text("Go your commander at Alpha for your briefing")
endif

ssnarea(10000, 1) and never() then
text("First you must gwet into the buggy and wipe out the AA guns on other side of mountains so")
text("so you can fly over it to the enemy Airbase to destroy oil barrels and helicopters")
text("Good Luck ")
endif

Eagle_Eye - 7-27-2007 at 05:40 AM

first text should work....it's just that it's has probably come and gone before you spawn..only trigger is if never, which means straight away..

try..

if past(30) and never() then

The second text..don't use ssnarea..

I'd use an event..like event 2, if group 1 in area 1

Then a wac..

if event(2) and never() then
text("First you must gwet into the buggy and wipe out the AA guns on other side of mountains so")
text("so you can fly over it to the enemy Airbase to destroy oil barrels and helicopters")
text("Good Luck ")
endif

cmurphe - 7-27-2007 at 08:00 AM

LOL on the second event(3 lines of text) I for ge the if(LOL)

cmurphe - 7-27-2007 at 08:01 AM

Thanks for everyones Help:)

Eagle_Eye - 7-27-2007 at 04:43 PM

Don't forget, the ssn10000 wil only work for SP, or the host..no one else..

Coop will need group 1, as in my example..

EE

cmurphe - 7-28-2007 at 12:47 AM

KK:)