Go Back   Novahq.net Forum > Off-Topic > General Chat

General Chat Talk about anything that does not fit into other topics here.

Reply
 
Thread Tools Search this Thread Display Modes
  #21  
Old 07-25-2017, 05:34 AM
SpecOpsSniper is offline SpecOpsSniper
SpecOpsSniper's Avatar
Registered User

Join Date: May 2017
Location: Earth
Posts: 326

sysdump is a freaking hard work ......
better if we had a decice which tells us what script are wrong and how to change it..
Reply With Quote
  #22  
Old 07-25-2017, 05:53 PM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

Quote:
Originally Posted by Z.SpecOps,Age View Post
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.
Reply With Quote
  #23  
Old 07-27-2017, 05:32 AM
SpecOpsSniper is offline SpecOpsSniper
SpecOpsSniper's Avatar
Registered User

Join Date: May 2017
Location: Earth
Posts: 326

Important

Quote:
Originally Posted by stompem View Post
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...
Reply With Quote
  #24  
Old 07-27-2017, 07:31 AM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

Quote:
Originally Posted by Z.SpecOps,Age View Post
sometimes and the new rebuilded wac was "SYSDUMP" grrrr hate this...
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...?
Reply With Quote
  #25  
Old 07-27-2017, 07:58 AM
SpecOpsSniper is offline SpecOpsSniper
SpecOpsSniper's Avatar
Registered User

Join Date: May 2017
Location: Earth
Posts: 326

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
Reply With Quote
  #26  
Old 07-27-2017, 12:12 PM
Baldo_the_Don is offline Baldo_the_Don
Baldo_the_Don's Avatar
Registered User

Join Date: Jul 2012
Posts: 529

if previous(3) and never() then
text "The main road is littered with hundereds of armed insurgents,"
text "so lock and load!"
endif
__________________
/////////////////////- SIGNATURE STARTS -//////////////////////
The NSO Deadline Mod at NovaHQ.net:
//////////////////////- SIGNATURE ENDS -///////////////////////
Reply With Quote
  #27  
Old 07-27-2017, 10:06 PM
SpecOpsSniper is offline SpecOpsSniper
SpecOpsSniper's Avatar
Registered User

Join Date: May 2017
Location: Earth
Posts: 326

i like the DL mod but why only 3?
Reply With Quote
  #28  
Old 07-27-2017, 10:09 PM
SpecOpsSniper is offline SpecOpsSniper
SpecOpsSniper's Avatar
Registered User

Join Date: May 2017
Location: Earth
Posts: 326

grr it did not worked
Reply With Quote
  #29  
Old 07-27-2017, 10:14 PM
SpecOpsSniper is offline SpecOpsSniper
SpecOpsSniper's Avatar
Registered User

Join Date: May 2017
Location: Earth
Posts: 326

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
Reply With Quote
  #30  
Old 07-27-2017, 11:15 PM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

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
Reply With Quote
  #31  
Old 07-28-2017, 03:17 AM
lolfake is offline lolfake
lolfake's Avatar
Delta Team Maps

Join Date: Sep 2006
Location: LOL Not Found
Posts: 277

my internet speed http://beta.speedtest.net/result/6492301646
__________________
Reply With Quote
  #32  
Old 07-28-2017, 04:33 AM
SpecOpsSniper is offline SpecOpsSniper
SpecOpsSniper's Avatar
Registered User

Join Date: May 2017
Location: Earth
Posts: 326

..........

Quote:
Originally Posted by stompem View Post
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.......
Reply With Quote
  #33  
Old 07-28-2017, 06:29 AM
SpecOpsSniper is offline SpecOpsSniper
SpecOpsSniper's Avatar
Registered User

Join Date: May 2017
Location: Earth
Posts: 326

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
Reply With Quote
  #34  
Old 07-28-2017, 08:47 AM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

;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
Reply With Quote
  #35  
Old 07-28-2017, 09:03 AM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

;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
Reply With Quote
  #36  
Old 07-28-2017, 09:48 AM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

Quote:
Originally Posted by Z.SpecOps,Age View Post
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.?
Reply With Quote
  #37  
Old 07-29-2017, 03:12 AM
SpecOpsSniper is offline SpecOpsSniper
SpecOpsSniper's Avatar
Registered User

Join Date: May 2017
Location: Earth
Posts: 326

Team Sabre
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


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




Powered by vBulletin®