| 得失物品提示“或”中文输入法“起了冲突是不可能的,因为没有相同点.. 然后我帮你弄好了.真的是缺少了刷新命令.
 用这段脚本替换之前的Window_Time_Date
 (不过...时间也过得太快了吧..)复制代码class Scene_Map
  alias old_main main
  alias old_update update
  def main
    @time_date_window = Window_Time_Date.new
    old_main
  end
  def update
    @time_date_window.refresh
    old_update
  end
end
class Window_Time_Date < Window_Base
def initialize
super(0, 0, 250, 55)
self.contents = Bitmap.new(width - 33, height - 33)
refresh
end # end def initialize
def refresh
    self.contents.clear
    self.contents.font.color = system_color
    self.contents.font.size = 19
  @total_sec = Graphics.frame_count 
   if @total_sec % 1 ==0
     $game_variables[51] += 1
   end # end if @total_sec % 40 ==0
   
   if $game_variables[51] >= 60 + 0
     $game_variables[51] = 0
     $game_variables[52] += 1
   end # end if $game_variables[1] >= 60 + 0
   
   if $game_variables[52] >= 23 + 1
     $game_variables[52] = 0
     $game_variables[53] += 1
   end # end if $game_variables[2] >= 23 + 1
   
   if $game_variables[53] >= 30 + 1
     $game_variables[53] = 1
     $game_variables[54] += 1
   end # end if $game_variables[3] >= 30 + 1
   
   if $game_variables[54] >= 12 + 1
     $game_variables[54] = 1
     $game_variables[55] += 1
   end # end if $game_variables[4] >= 12 + 1
   
   text_min = ["00", "01", "02", "03", "04", "05", "06","07","08","09","10","11",
   "12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27",
   "28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43",
   "44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59",
   "60"][$game_variables[51]]
   text_hour = ["00:", "01:", "02:", "03:", "04:", "05:", "06:",
                "07:", "08:", "09:", "10:", "11:", "12:","13:","14:","15:","16:",
                "17:","18:","19:","20:","21:","22:","23:","24:"][$game_variables[52]]
   text_day = ["", "01日", "02日", "03日", "04日", "05日", "06日",
               "07日", "08日", "09日", "10日", "11日", "12日",
               "13日", "14日", "15日", "16日", "17日", "18日",
               "19日", "20日", "21日", "22日", "23日", "24日",
               "25日", "26日", "27日", "28日", "29日",
               "30日"][$game_variables[53]]
   text_month = ["", " 01月", " 02月", " 03月", " 04月", " 05月", " 06月",
                  " 07月", " 08月", " 09月", " 10月", " 11月", " 12月"][$game_variables[54]]
   text_year = ["2008年", "2009年", "2010年","2011年","2012年","2013年","2014年",
   "2015年","2016年","2017年","2018年","2019年","2020年"][$game_variables[55]]
self.contents.clear
self.contents.draw_text(5, -5, 128, 32,text_year)
self.contents.draw_text(60, -5, 128, 32, text_month)
self.contents.draw_text(111, -5, 128, 32, text_day)
self.contents.draw_text(155, -5, 128, 32, text_hour)
self.contents.draw_text(184, -5, 128, 32, text_min)
  def update
    super
      refresh
  end
end
end
 
 
 
 
 ..
 |