Novahq.net Forum

Novahq.net Forum (https://novahq.net/forum/index.php)
-   General Chat (https://novahq.net/forum/forumdisplay.php?f=2)
-   -   Kuwait wars (https://novahq.net/forum/showthread.php?t=48220)

SpecOpsSniper 07-25-2017 05:34 AM

sysdump is a freaking hard work ......
better if we had a decice which tells us what script are wrong and how to change it..

Guest001 07-25-2017 05:53 PM

Quote:

Originally Posted by Z.SpecOps,Age (Post 387173)
sysdump is a freaking hard work ......
better if we had a decice which tells us what script are wrong and how to change it..

Do you version your projects?

You probably do but I'll post this for others to read anyway.


Save each map revision or group of changes as a version.

Usually a set of letters and/or numbers added at the end of the file name.

This helps greatly with tracking down bugs and recovering from disaster.

SpecOpsSniper 07-27-2017 05:32 AM

Quote:

Originally Posted by stompem (Post 387174)
Do you version your projects?

You probably do but I'll post this for others to read anyway.


Save each map revision or group of changes as a version.

Usually a set of letters and/or numbers added at the end of the file name.

This helps greatly with tracking down bugs and recovering from disaster.

sometimes and the new rebuilded wac was "SYSDUMP" grrrr hate this...:disappoint::disappoint:

Guest001 07-27-2017 07:31 AM

Quote:

Originally Posted by Z.SpecOps,Age (Post 387175)
sometimes and the new rebuilded wac was "SYSDUMP" grrrr hate this...:disappoint::disappoint:

Want some friendly advice?

Don't be disappointed get educated.

Understanding the engine's capabilities is a must.

Trying anything beyond the engine's capabilities will cause a sysdump.

Go figure...? :nerd:

SpecOpsSniper 07-27-2017 07:58 AM

heres my wac take a deep look
the wac is not complete cuz it "SYSDUMP"

if previous(3) and never() then
"The Main Road are littered with hundereds of"
"Armed Insurgents so Lock and Load"
endif

Baldo_the_Don 07-27-2017 12:12 PM

if previous(3) and never() then
text "The main road is littered with hundereds of armed insurgents,"
text "so lock and load!"
endif

SpecOpsSniper 07-27-2017 10:06 PM

i like the DL mod but why only 3?

SpecOpsSniper 07-27-2017 10:09 PM

grr it did not worked

SpecOpsSniper 07-27-2017 10:14 PM

hmmm if i remove the wac it does not crash but if i do that the map are useless
theres something hiding in my maps i don't know what the heck it is!!
the last wac. that did not crashed was :CENCORED! not the s thing

Guest001 07-27-2017 11:15 PM

Use parentheses text("Text Here")

if previous(3) and never() then
text("The main road is littered with hundereds of armed insurgents.")
text("so lock and load!")
endif


This will work

if previous() and never() then
text("The main road is littered with hundereds of armed insurgents.")
text("so lock and load!")
endif


Or use chain for 3 seconds after triggered

if chain(3) and never() then
text("The main road is littered with hundereds of armed insurgents.")
text("so lock and load!")
endif

lolfake 07-28-2017 03:17 AM

my internet speed http://beta.speedtest.net/result/6492301646

SpecOpsSniper 07-28-2017 04:33 AM

..........
 
Quote:

Originally Posted by stompem (Post 387182)
Use parentheses text("Text Here")

if previous(3) and never() then
text("The main road is littered with hundereds of armed insurgents.")
text("so lock and load!")
endif


This will work

if previous() and never() then
text("The main road is littered with hundereds of armed insurgents.")
text("so lock and load!")
endif


Or use chain for 3 seconds after triggered

if chain(3) and never() then
text("The main road is littered with hundereds of armed insurgents.")
text("so lock and load!")
endif

the wac does not work it crashes my computer.......

SpecOpsSniper 07-28-2017 06:29 AM

i need a wac script that generates thunder or lighting because the last attempt crashed
my computer i will be offline tommorow and be online in friday nights depends on what my parents says and i will gonna have an unscheduled visit on NHQ but not on com but on tablet-pc and i have a periodical exam on monday tuesday and wendsday and etc

Guest001 07-28-2017 08:47 AM

;Set at beginning and set once only (Init)

if never() then
rain(100)
overcast(50)
skyspeed(25)
endif


;Activity using a random triggered constantly - Script uses (then)

if past(1) and elapse(16) and random(16) and waveready() then
lightning(25,25,25)
farflash()
endif

;Exact time of day is set in MEd - Script uses (never() then)

if eq(curTOD,01:30) and never() then
overcast(100)
endif

if eq(curTOD,01:35) and never() then
rain(10)
endif

Guest001 07-28-2017 09:03 AM

;Triggered by variables


if elapse(120) and random(2) then
set(v27,1)
set(v28,0)
else
set(v27,0)
set(v28,1)
end
endif
if eq(v27,1) then
if elapse(120) and random(2) then
rain(40,20)
overcast(40,20)
set(v17,1)
end
if chain(60) and random(2) then
rain(0,20)
overcast(0,20)
set(v17,0)
end
endif
if eq(v17,1) then
if past(1) and elapse(4) and random(30) then
lightning(100,30,30)
flash()
end
endif
if eq(v28,1) then
if elapse(6) and random(16) and waveready() then
lightning(100,100,100)
flash()
end
if chain(4) then
lightning(50,5,5)
farflash()
end
endif

Guest001 07-28-2017 09:48 AM

Quote:

Originally Posted by Z.SpecOps,Age (Post 387173)
sysdump is a freaking hard work ......
better if we had a decice which tells us what script are wrong and how to change it..

Wait!...

Didn't I mentioned previously that a wave file was causing the dump?

It may have been someone else but...

It was in a DFX2 or TS map?

SYSDUMP - REF: sound system

One of the wave files listed in the WAC does not exist. I checked.

After removal the map was OK.

Maybe I forgot to post it.? :kekekegay

SpecOpsSniper 07-29-2017 03:12 AM

Team Sabre


All times are GMT -5. The time now is 12:44 PM.

Powered by vBulletin®