Thread: Kuwait wars
View Single Post
  #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