No they're not supposed to. They have no collision as far as I can tell, are you using some in-dev OpenMW build? Indev builds can sometimes handle stuff differently. Just a guess in any case.
Maybe they shouldn't also fly in really bad weather, like, thunderstorms with lightnings etc. So I added the following condition to RP_bugs_NightActivate script to stop fireflies from flying in bad weather: if ( GetCurrentWeather > 3 ) set toEnable to 0 endif
29 comments
The script you need to change:
RP_bugs_NightActivate
The code you need to change:
if ( GameHour < 18 )
if ( GameHour > 6 )
set toEnable to 0
The above will disable fireflies from being active between the times of 6 pm and 6 am.
The alteration will be:
if ( GameHour < 5 )
if ( GameHour > 6 )
set toEnable to 0
...the above change turns fireflies off between 5 am and 6 am, and enables them the rest of the day.
Now, you have fireflies for 23 hours a day!
I love the mod but I can't get the fireflies to emit light. They should do that right?Edit: never mind.Great mod and strongly recommended to everybody. It has a great visual impact in many areas.
So I added the following condition to RP_bugs_NightActivate script to stop fireflies from flying in bad weather:
if ( GetCurrentWeather > 3 )
set toEnable to 0
endif
Great idea!