赞 | 21 |
VIP | 308 |
好人卡 | 199 |
积分 | 14 |
经验 | 129932 |
最后登录 | 2020-6-11 |
在线时间 | 2881 小时 |
Lv3.寻梦者 闇吼者の災悪眷族 不気味存在締造者
- 梦石
- 0
- 星屑
- 1366
- 在线时间
- 2881 小时
- 注册时间
- 2014-7-29
- 帖子
- 6491
|
- def refresh
- Smomo::Calendar.ensure_time_legal
- Smomo::Calendar.check_period_and_zone
- contents.clear
- contents.gradient_fill_rect(0, 0, @sprite.width, @sprite.width,
- Color.new(0, 0, 0, 0), Color.new(30, 30, 30))
- format = Smomo.deep_clone(Format[:map])
- format.each_with_index do |t, l|
- t.gsub!(/_/){" "}
- System.each_with_index do |(u, m), i|
- t.gsub!(/<(\d*)#{u}>/){
- format("%0#{$1 ? $1.to_i : nil}d", $game_variables[Var + i])
- }
- end
- t.gsub!(/<Period>/){"#{PeriodName[Smomo::Calendar.prd]}"}
- t.gsub!(/<Zone>/){"#{Smomo::Calendar.zone}"}
- draw_text_ex(120, l * 30 + 5, t)
- end
复制代码 全部复制,替换掉 245行~262行(左右)
def refresh
~
end
的全部内容(包括def和end) |
|