xdanx
But you can call me Dan :)
- 42
- Posts
- 20
- Years
- Seen Jul 25, 2012
I've been checking about how to change the tones for both, day and night. As far as I've seen, I'd say this is done by editing the first part of the PokemonTime script, where you see this:
Now, if that's the case, what I don't understand is how are exactly this lines ordered. I tried changing some stuff, and as time keeps running, it was quite difficult to find which one to change. So what I want to know is basically 2 things:
1- Is this based on the 24 hours of the day meaning each line represents 1 hour?
If that's the case, I'd like to know how do I identify every time of the day. 'cause I tried changing some values within the same hour and I had to use change them on lines for it to work.
2- How do values work?
As far as I've seen, negative values seem to be related to night time and positive values to day time. Last number doesn't seem to be a tone, but some kind of identification of the time of the day, though I'm not sure about that. So I'd like to know what effect does it have each value.
That, of course, if this is what should be changed to edit light tones.
Code:
module PBDayNight
HourlyTones=[
Tone.new(-142.5,-142.5,-22.5,68),
Tone.new(-135.5,-135.5,-24, 68),
Tone.new(-127.5,-127.5,-25.5,68),
Tone.new(-127.5,-127.5,-25.5,68),
........
Now, if that's the case, what I don't understand is how are exactly this lines ordered. I tried changing some stuff, and as time keeps running, it was quite difficult to find which one to change. So what I want to know is basically 2 things:
1- Is this based on the 24 hours of the day meaning each line represents 1 hour?
If that's the case, I'd like to know how do I identify every time of the day. 'cause I tried changing some values within the same hour and I had to use change them on lines for it to work.
2- How do values work?
As far as I've seen, negative values seem to be related to night time and positive values to day time. Last number doesn't seem to be a tone, but some kind of identification of the time of the day, though I'm not sure about that. So I'd like to know what effect does it have each value.
That, of course, if this is what should be changed to edit light tones.