I'll pretty much be inserting it here:
CODE
class Game_Map
include Rafidelis::Advanced_Time_System
def update_rats_map_tone
if name.include?(Interior_Map_Name_Symbol)
tone_set(Tone.new(0,0,0,0))
return
end
if $rats.in_early_morning?
tone = Early_Morning_Tone
elsif $rats.in_morning?
tone = Morning_Tone
elsif $rats.in_afternoon?
tone = Afternoon_Tone
elsif $rats.in_evening?
tone = Evening_Tone
elsif $rats.in_night?
tone = Night_Tone
elsif $rats.in_earliness?
tone = Earliness_Tone
else
tone = Tone.new(0,0,0,0)
end
tone_set(tone)
end
include Rafidelis::Advanced_Time_System
def update_rats_map_tone
if name.include?(Interior_Map_Name_Symbol)
tone_set(Tone.new(0,0,0,0))
return
end
if $rats.in_early_morning?
tone = Early_Morning_Tone
elsif $rats.in_morning?
tone = Morning_Tone
elsif $rats.in_afternoon?
tone = Afternoon_Tone
elsif $rats.in_evening?
tone = Evening_Tone
elsif $rats.in_night?
tone = Night_Tone
elsif $rats.in_earliness?
tone = Earliness_Tone
else
tone = Tone.new(0,0,0,0)
end
tone_set(tone)
end