IgorX Posted November 24, 2015 Share Posted November 24, 2015 (edited) Hello! I noticed that there's no topic about timecyc research on any gta forum. It took a few hours to understand how it works. There's no tools to edit gta 5 timecyc files, so we will do it manually. Let's begin! All timecycle files are placed in GTAV/common.rpf/data/timecycle/ w_[string]. I decided to edit w_neutral.xml file. I can see many parameters like color data and others. For this documentation, I took data from <sky_azimuth_east_col> sections <sky_azimuth_east_col_r>0.0823 1.0020 1.0020 1.0020 0.0020 0.2527 0.0020 0.0020 0.0020 0.0020 1.0020 0.0412 0.5000</sky_azimuth_east_col_r> <sky_azimuth_east_col_g>0.1487 1.0020 1.0020 1.0020 1.0020 0.2725 1.0020 1.0020 1.0020 1.0020 1.0020 0.1078 0.5000</sky_azimuth_east_col_g> <sky_azimuth_east_col_b>0.2588 1.0020 1.0020 1.0020 0.0529 0.2920 0.0529 0.0529 0.0529 0.0529 1.0020 0.1902 0.5000</sky_azimuth_east_col_b> Every entry is color data for define time period. They're separated by space. I described time period and definition in Excel file: (Ignore 10.020 it's a negative. The positive false is 1.0200) Let's look on the first entry of every color data:<sky_azimuth_east_col_r> 0.0823 - Red Data color in float <sky_azimuth_east_col_g> 0.1487 - Green Data color in float <sky_azimuth_east_col_b> 0.2588 - Blue data color in float As you know, the range of RGB is [0 to 255]. We need convert such range to the float value. I picked up this color: You can use paint for that. The next step is conversion. You can take any value and divide it by 255 (like 178 / 255 = 0.6978) or do it automatically. Open this website http://www.corecoding.com/utilities/rgb-or-hex-to-float.php (not an adverstisment) and put RGB Values such we got in paint editor We got this code. Your code will be different. We don't have the last character but it's not a problem. You can add any value like [0,1..9] So when we got the code we need to replace this value: 0.9450 After this string <sky_azimuth_east_col_r> Do the same operation for <sky_azimuth_east_col_g> and <sky_azimuth_east_col_b> (in my case I need to put 0.7690 to sky_azimuth_east_col_g and 0.0470 to the sky_azimuth_east_col_b) What we'll get: <sky_azimuth_east_col_r>0.9450 1.0020 1.0020 1.0020 0.0020 0.2527 0.0020 0.0020 0.0020 0.0020 1.0020 0.0412 0.5000</sky_azimuth_east_col_r> <sky_azimuth_east_col_g>0.7690 1.0020 1.0020 1.0020 1.0020 0.2725 1.0020 1.0020 1.0020 1.0020 1.0020 0.1078 0.5000</sky_azimuth_east_col_g> <sky_azimuth_east_col_b>0.0470 1.0020 1.0020 1.0020 0.0529 0.2920 0.0529 0.0529 0.0529 0.0529 1.0020 0.1902 0.5000</sky_azimuth_east_col_b> I made some videos. You can watch results here (include original timecyc video) (no sound) below you can watch this timecyc without changes: P.S If you want to do Timecyc Editor I can help you with GUI Design. P.P.S. Section and SkySphere descriptions will come later Edited November 24, 2015 by IgorX DeGeneratorX, MrGTAmodsgerman, comet_ and 8 others 11 Link to comment Share on other sites More sharing options...
tjoel2012 Posted December 11, 2015 Share Posted December 11, 2015 (edited) Hi! Thanks for this post. I was looking for a guide to edit timecyc without any luck! Until I fund your post! You are the Best!!! Could you please tell me if there is more info about it? I wan to desaturate the sky a little and to retouch the color of the vegetation (Trees, grass, plants, etc). Again, Thank you very much! Excuse my English. Edited December 11, 2015 by tjoel2012 Link to comment Share on other sites More sharing options...
IgorX Posted December 11, 2015 Author Share Posted December 11, 2015 Hi! Thanks for this post. I was looking for a guide to edit timecyc without any luck! Until I fund your post! You are the Best!!! Could you please tell me if there is more info about it? I wan to desaturate the sky a little and to retouch the color of the vegetation (Trees, grass, plants, etc). Again, Thank you very much! Excuse my English. I'm not sure what kind of sections could desaturate the color of vegetations. I need to check some Ambient things and others. tjoel2012 1 Link to comment Share on other sites More sharing options...
tjoel2012 Posted December 12, 2015 Share Posted December 12, 2015 Hi! Thanks for this post. I was looking for a guide to edit timecyc without any luck! Until I fund your post! You are the Best!!! Could you please tell me if there is more info about it? I wan to desaturate the sky a little and to retouch the color of the vegetation (Trees, grass, plants, etc). Again, Thank you very much! Excuse my English. I'm not sure what kind of sections could desaturate the color of vegetations. I need to check some Ambient things and others. OK, I am playing with it, making some changes. Thanks to you now i understand what does the numbers mean! Link to comment Share on other sites More sharing options...
VenomV Posted March 27, 2016 Share Posted March 27, 2016 Hi! Thanks for this post. I was looking for a guide to edit timecyc without any luck! Until I fund your post! You are the Best!!! Could you please tell me if there is more info about it? I wan to desaturate the sky a little and to retouch the color of the vegetation (Trees, grass, plants, etc). Again, Thank you very much! Excuse my English. I'm not sure what kind of sections could desaturate the color of vegetations. I need to check some Ambient things and others. Thank you so much that you are the only one investigating what those lines means, maybe there's hope for my mod Link to comment Share on other sites More sharing options...
VenomV Posted March 27, 2016 Share Posted March 27, 2016 Hello! I noticed that there's no topic about timecyc research on any gta forum. It took a few hours to understand how it works. There's no tools to edit gta 5 timecyc files, so we will do it manually. Let's begin! All timecycle files are placed in GTAV/common.rpf/data/timecycle/ w_[string]. I decided to edit w_neutral.xml file. I can see many parameters like color data and others. For this documentation, I took data from <sky_azimuth_east_col> sections <sky_azimuth_east_col_r>0.0823 1.0020 1.0020 1.0020 0.0020 0.2527 0.0020 0.0020 0.0020 0.0020 1.0020 0.0412 0.5000</sky_azimuth_east_col_r> <sky_azimuth_east_col_g>0.1487 1.0020 1.0020 1.0020 1.0020 0.2725 1.0020 1.0020 1.0020 1.0020 1.0020 0.1078 0.5000</sky_azimuth_east_col_g> <sky_azimuth_east_col_b>0.2588 1.0020 1.0020 1.0020 0.0529 0.2920 0.0529 0.0529 0.0529 0.0529 1.0020 0.1902 0.5000</sky_azimuth_east_col_b> Every entry is color data for define time period. They're separated by space. I described time period and definition in Excel file: (Ignore 10.020 it's a negative. The positive false is 1.0200) Let's look on the first entry of every color data: <sky_azimuth_east_col_r> 0.0823 - Red Data color in float <sky_azimuth_east_col_g> 0.1487 - Green Data color in float <sky_azimuth_east_col_b> 0.2588 - Blue data color in float As you know, the range of RGB is [0 to 255]. We need convert such range to the float value. I picked up this color: You can use paint for that. The next step is conversion. You can take any value and divide it by 255 (like 178 / 255 = 0.6978) or do it automatically. Open this website http://www.corecoding.com/utilities/rgb-or-hex-to-float.php (not an adverstisment) and put RGB Values such we got in paint editor We got this code. Your code will be different. We don't have the last character but it's not a problem. You can add any value like [0,1..9] So when we got the code we need to replace this value: 0.9450 After this string <sky_azimuth_east_col_r> Do the same operation for <sky_azimuth_east_col_g> and <sky_azimuth_east_col_b> (in my case I need to put 0.7690 to sky_azimuth_east_col_g and 0.0470 to the sky_azimuth_east_col_b) What we'll get: <sky_azimuth_east_col_r>0.9450 1.0020 1.0020 1.0020 0.0020 0.2527 0.0020 0.0020 0.0020 0.0020 1.0020 0.0412 0.5000</sky_azimuth_east_col_r> <sky_azimuth_east_col_g>0.7690 1.0020 1.0020 1.0020 1.0020 0.2725 1.0020 1.0020 1.0020 1.0020 1.0020 0.1078 0.5000</sky_azimuth_east_col_g> <sky_azimuth_east_col_b>0.0470 1.0020 1.0020 1.0020 0.0529 0.2920 0.0529 0.0529 0.0529 0.0529 1.0020 0.1902 0.5000</sky_azimuth_east_col_b> I made some videos. You can watch results here (include original timecyc video) (no sound) below you can watch this timecyc without changes: could you give us info about how take away all that fog and the clouds? P.S If you want to do Timecyc Editor I can help you with GUI Design. P.P.S. Section and SkySphere descriptions will come later Link to comment Share on other sites More sharing options...
fastman92 Posted March 27, 2016 Share Posted March 27, 2016 Someone should make . Link to comment Share on other sites More sharing options...
_CP_ Posted March 27, 2016 Share Posted March 27, 2016 Życzę powodzenia. Good luck. Link to comment Share on other sites More sharing options...
VenomV Posted March 27, 2016 Share Posted March 27, 2016 Someone should make . won't be easy tho Link to comment Share on other sites More sharing options...
FixingG00D Posted March 27, 2016 Share Posted March 27, 2016 (edited) I enquired about this in the other time sync topic. How complex a task would it be to manipulate the time point in which all the light textures / lighting appear for buildings, street lamps, neon signs, etc? They are triggered in game when past a certain time at night, so not sure if there would be a way to trigger this earlier on, or for example lights stay on all day? It's like the reverse of "blackout mode", used in various mods. Edited March 27, 2016 by FixingG00D Link to comment Share on other sites More sharing options...
VenomV Posted March 27, 2016 Share Posted March 27, 2016 Życzę powodzenia. Good luck. are you here to help? Link to comment Share on other sites More sharing options...
VenomV Posted March 27, 2016 Share Posted March 27, 2016 I enquired about this in the other time sync topic. How complex a task would it be to manipulate the time point in which all the light textures / lighting appear for buildings, street lamps, neon signs, etc? They are triggered in game when past a certain time at night, so not sure if there would be a way to trigger this earlier on, or for example lights stay on all day? It's like the reverse of "blackout mode", used in various mods. Welcome my friend to the documentation of timecycle finally! we have found one Link to comment Share on other sites More sharing options...
_CP_ Posted March 27, 2016 Share Posted March 27, 2016 @FixingG00D Artifical light setiings are stored in models (.ydr) and we cannot open them yet. PacketOverload_x64bit 1 Link to comment Share on other sites More sharing options...
FixingG00D Posted March 27, 2016 Share Posted March 27, 2016 Cheers CP. Maybe i'm thinking about it the wrong way. Is it possible to "enhance" the sky or underwater lighting at night so it appeared much lighter / bluer? Would this achieve the result, as time would be set to night e.g 23:00, so the artificial lighting of buildings would trigger? I'm not sure if this is what your VisualV mod touches on? Basically the requirement I have is that to make underwater appear lighter and bluer e.g extra sunny daytime, I would obviously need to set these as such, however I'm trying to also get some neon signs to light up / glow, which only does so at dark night time. I get a feeling what i'm trying to figure might not yet be possible. Link to comment Share on other sites More sharing options...
VenomV Posted March 27, 2016 Share Posted March 27, 2016 Cheers CP. Maybe i'm thinking about it the wrong way. Is it possible to "enhance" the sky or underwater lighting at night so it appeared much lighter / bluer? Would this achieve the result, as time would be set to night e.g 23:00, so the artificial lighting of buildings would trigger? I'm not sure if this is what your VisualV mod touches on? Basically the requirement I have is that to make underwater appear lighter and bluer e.g extra sunny daytime, I would obviously need to set these as such, however I'm trying to also get some neon signs to light up / glow, which only does so at dark night time. I get a feeling what i'm trying to figure might not yet be possible. if you have already found out about some lines and parameters what they do and how to understand them could you add them here in the forum Link to comment Share on other sites More sharing options...
VenomV Posted April 1, 2016 Share Posted April 1, 2016 Cheers CP. Maybe i'm thinking about it the wrong way. Is it possible to "enhance" the sky or underwater lighting at night so it appeared much lighter / bluer? Would this achieve the result, as time would be set to night e.g 23:00, so the artificial lighting of buildings would trigger? I'm not sure if this is what your VisualV mod touches on? Basically the requirement I have is that to make underwater appear lighter and bluer e.g extra sunny daytime, I would obviously need to set these as such, however I'm trying to also get some neon signs to light up / glow, which only does so at dark night time. I get a feeling what i'm trying to figure might not yet be possible. Looks like this Documentation died out great , i think i am useless, no timecycle documentation, i used my damn life for it! i think i used my time on something useles and ruined my life and i think its time to say goodbye to this world and escape from hell, bye guys see you in the other dimensional reality of the dead people Link to comment Share on other sites More sharing options...
_CP_ Posted April 13, 2016 Share Posted April 13, 2016 Cheers CP. Maybe i'm thinking about it the wrong way. Is it possible to "enhance" the sky or underwater lighting at night so it appeared much lighter / bluer? Would this achieve the result, as time would be set to night e.g 23:00, so the artificial lighting of buildings would trigger? Night lighting is in light_artifical_ext_down and up parameters. I didn't modify underwater, but game is using a time cycle modifier too. Link to comment Share on other sites More sharing options...
VenomV Posted April 15, 2016 Share Posted April 15, 2016 Cheers CP. Maybe i'm thinking about it the wrong way. Is it possible to "enhance" the sky or underwater lighting at night so it appeared much lighter / bluer? Would this achieve the result, as time would be set to night e.g 23:00, so the artificial lighting of buildings would trigger? Night lighting is in light_artifical_ext_down and up parameters. I didn't modify underwater, but game is using a time cycle modifier too. Ok Thanks but how do i make only the streetlights white? Link to comment Share on other sites More sharing options...
_CP_ Posted April 17, 2016 Share Posted April 17, 2016 Just look what's the difference: Stryfaar, BS_BlackScout, Fireboyd78 and 1 other 4 Link to comment Share on other sites More sharing options...
VenomV Posted April 22, 2016 Share Posted April 22, 2016 Just look what's the difference: Thats how i exactly want it, but i don't really know how to change those parameters i have zero experience with those so far Link to comment Share on other sites More sharing options...
_CP_ Posted April 22, 2016 Share Posted April 22, 2016 Night lighting is in light_artifical_ext_down and up parameters. Link to comment Share on other sites More sharing options...
VenomV Posted April 22, 2016 Share Posted April 22, 2016 Night lighting is in light_artifical_ext_down and up parameters. In timecycle 1 or 2 or 3? or in weather files, can you give me your parameters like an example of what to change and not to change Link to comment Share on other sites More sharing options...
_CP_ Posted April 22, 2016 Share Posted April 22, 2016 w_*.xml files (e.g. w_extrasunny.xml) Link to comment Share on other sites More sharing options...
VenomV Posted April 22, 2016 Share Posted April 22, 2016 w_*.xml files (e.g. w_extrasunny.xml) Ok thanks but can you show me your parameters I just want to compare yours to the old timecycle, so i can see what you made different, and what i can make different with another numbers Link to comment Share on other sites More sharing options...
_CP_ Posted April 22, 2016 Share Posted April 22, 2016 I changed these values to 1.400. Link to comment Share on other sites More sharing options...
VenomV Posted April 22, 2016 Share Posted April 22, 2016 I changed these values to 1.400. All of them? Link to comment Share on other sites More sharing options...
_CP_ Posted April 22, 2016 Share Posted April 22, 2016 Nope, only related to night, so it's first, second, twelve and thirteen value. Link to comment Share on other sites More sharing options...
VenomV Posted April 22, 2016 Share Posted April 22, 2016 Nope, only related to night, so it's first, second, twelve and thirteen value. Uh sorry if i am stupid and really bad at understanding and asking so many questions, I hope you are ok with that i am so sorry if i waste your time , anyway where's the night parameter and the one that are day parameter? Link to comment Share on other sites More sharing options...
VenomV Posted April 23, 2016 Share Posted April 23, 2016 Nope, only related to night, so it's first, second, twelve and thirteen value. Where's First, Second,Twelve, Thirteen Value? Link to comment Share on other sites More sharing options...
_CP_ Posted April 23, 2016 Share Posted April 23, 2016 First two values and last two values: <light_artificial_ext_down_col_r> 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000</light_artificial_ext_down_col_r> <light_artificial_ext_down_col_g> 0.2800 0.2800 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.2800 0.2800</light_artificial_ext_down_col_g> <light_artificial_ext_down_col_b> 0.0600 0.0600 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0600 0.0600</light_artificial_ext_down_col_b> BS_BlackScout and PacketOverload_x64bit 2 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now