赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 13512 |
最后登录 | 2022-5-16 |
在线时间 | 140 小时 |
Lv1.梦旅人 茄孓
- 梦石
- 0
- 星屑
- 72
- 在线时间
- 140 小时
- 注册时间
- 2007-5-29
- 帖子
- 956
|
把这个脚本
- if @wait_count != nil
- @wait_count -= 1
- if @wait_count == 0
- @wait_count = nil
- end
- return
- end
复制代码
放到窗口的refresh下
然后用
@wait_count = x
来等待
举个例子 金钱的刷新我将等待40刷一下
- #==============================================================================
- # ■ Window_Gold
- #------------------------------------------------------------------------------
- # 显示金钱的窗口。
- #==============================================================================
- class Window_Gold < Window_Base
- #--------------------------------------------------------------------------
- # ● 初始化窗口
- #--------------------------------------------------------------------------
- def initialize
- super(0, 0, 160, 64)
- self.contents = Bitmap.new(width - 32, height - 32)
- refresh
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- if @wait_count != nil
- @wait_count -= 1
- if @wait_count == 0
- @wait_count = nil
- end
- return
- end
- @wait_count = 40
- self.contents.clear
- cx = contents.text_size($data_system.words.gold).width
- self.contents.font.color = normal_color
- self.contents.draw_text(4, 0, 120-cx-2, 32, $game_party.gold.to_s, 2)
- self.contents.font.color = system_color
- self.contents.draw_text(124-cx, 0, cx, 32, $data_system.words.gold, 2)
- end
- end
复制代码
版主对此帖的评论:『update才是每祯调用的~』,积分『-0』。这些被扣积分的一半会用于对本帖正确答案的悬赏。 版主对此帖的评论:『update才是每祯调用的~』,积分『-0』。这些被扣积分的一半会用于对本帖正确答案的悬赏。 |
|